source: git/dyn_modules/kernel/misc.cc @ 6ce030f

spielwiese
Last change on this file since 6ce030f was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 560 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/*
5* ABSTRACT: interpreter: LIB and help
6*/
7
8#include <locals.h>
9
10BOOLEAN iiKernelMiscNN(leftv res, leftv h)
11{
12 
13  idhdl pck = NULL, id = NULL;
14  printf("myTest 1\n");
15  if(h==NULL) printf("myTest 2\n");
16  else {
17    iiname2hdl((char *)(h->Data()), &pck, &id);
18    printf("myTest 1\n");
19    if(pck != NULL) Print("Pack: '%s'\n", pck->id);
20    if(id != NULL)  Print("Rec : '%s'\n", id->id);
21  }
22 
23  res->rtyp=NONE;
24  return FALSE;
25}
Note: See TracBrowser for help on using the repository browser.