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

spielwiese
Last change on this file since 341696 was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 571 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id$ */
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.