/usr/include/clips/prntutil.h is in libclips-dev 6.24-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.24 07/01/05 */
/* */
/* PRINT UTILITY HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: Utility routines for printing various items */
/* and messages. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.24: Link error occurs for the SlotExistError */
/* function when OBJECT_SYSTEM is set to 0 in */
/* setup.h. DR0865 */
/* */
/* Added DataObjectToString function. */
/* */
/* Added SlotExistError function. */
/* */
/*************************************************************/
#ifndef _H_prntutil
#define _H_prntutil
#ifndef _H_moduldef
#include "moduldef.h"
#endif
#ifndef _STDIO_INCLUDED_
#define _STDIO_INCLUDED_
#include <stdio.h>
#endif
#define PRINT_UTILITY_DATA 53
struct printUtilityData
{
intBool PreserveEscapedCharacters;
intBool AddressesToStrings;
intBool InstanceAddressesToNames;
};
#define PrintUtilityData(theEnv) ((struct printUtilityData *) GetEnvironmentData(theEnv,PRINT_UTILITY_DATA))
#ifdef LOCALE
#undef LOCALE
#endif
#ifdef _PRNTUTIL_SOURCE_
#define LOCALE
#else
#define LOCALE extern
#endif
LOCALE void InitializePrintUtilityData(void *);
LOCALE void PrintInChunks(void *,char *,char *);
LOCALE void PrintFloat(void *,char *,double);
LOCALE void PrintLongInteger(void *,char *,long);
LOCALE void PrintAtom(void *,char *,int,void *);
LOCALE void PrintTally(void *,char *,long,char *,char *);
LOCALE char *FloatToString(void *,double);
LOCALE char *LongIntegerToString(void *,long);
LOCALE char *DataObjectToString(void *,DATA_OBJECT *);
LOCALE void SyntaxErrorMessage(void *,char *);
LOCALE void SystemError(void *,char *,int);
LOCALE void PrintErrorID(void *,char *,int,int);
LOCALE void PrintWarningID(void *,char *,int,int);
LOCALE void CantFindItemErrorMessage(void *,char *,char *);
LOCALE void CantDeleteItemErrorMessage(void *,char *,char *);
LOCALE void AlreadyParsedErrorMessage(void *,char *,char *);
LOCALE void LocalVariableErrorMessage(void *,char *);
LOCALE void DivideByZeroErrorMessage(void *,char *);
LOCALE void SalienceInformationError(void *,char *,char *);
LOCALE void SalienceRangeError(void *,int,int);
LOCALE void SalienceNonIntegerError(void *);
LOCALE void CantFindItemInFunctionErrorMessage(void *,char *,char *,char *);
LOCALE void SlotExistError(void *,char *,char *);
#endif
|