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