Exemplo n.º 1
0
const char *DefglobalPPForm(
  Defglobal *theDefglobal)
  {
   return GetConstructPPForm(&theDefglobal->header);
  }
Exemplo n.º 2
0
globle const char *EnvGetDefclassPPForm(
  void *theEnv,
  void *theClass)
  {
   return GetConstructPPForm(theEnv,(struct constructHeader *) theClass);
  }
Exemplo n.º 3
0
const char *DefrulePPForm(
  Defrule *theDefrule)
  {
   return GetConstructPPForm(&theDefrule->header);
  }
Exemplo n.º 4
0
globle const char *EnvGetDefrulePPForm(
  void *theEnv,
  void *theDefrule)
  {
   return GetConstructPPForm(theEnv,(struct constructHeader *) theDefrule);
  }
Exemplo n.º 5
0
globle const char *EnvGetDeffunctionPPForm(
  void *theEnv,
  void *theDeffunction)
  {
   return GetConstructPPForm(theEnv,(struct constructHeader *) theDeffunction);
  }
Exemplo n.º 6
0
const char *DeffactsPPForm(
  Deffacts *theDeffacts)
  {
   return GetConstructPPForm(&theDeffacts->header);
  }