source: git/modules/kernel/misc.cc @ a5f15a

fieker-DuValspielwiese
Last change on this file since a5f15a was d848cbc, checked in by Kai Krüger <krueger@…>, 25 years ago
*** empty log message *** git-svn-id: file:///usr/local/Singular/svn/trunk@2960 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 619 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: misc.cc,v 1.2 1999-03-19 14:13:27 krueger Exp $ */
5/*
6* ABSTRACT: interpreter: LIB and help
7*/
8
9#include <locals.h>
10
11BOOLEAN iiKernelMiscNN(leftv res, leftv h)
12{
13 
14  idhdl pck = NULL, id = NULL;
15  printf("myTest 1\n");
16  if(h==NULL) printf("myTest 2\n");
17  else {
18    iiname2hdl((char *)(h->Data()), &pck, &id);
19    printf("myTest 1\n");
20    if(pck != NULL) Print("Pack: '%s'\n", pck->id);
21    if(id != NULL)  Print("Rec : '%s'\n", id->id);
22  }
23 
24  res->rtyp=NONE;
25  return FALSE;
26}
Note: See TracBrowser for help on using the repository browser.