clips-sys 0.4.0

Bindgen generated wrapper for CLIPS (clipsrules.net)
Documentation
   /*******************************************************/
   /*      "C" Language Integrated Production System      */
   /*                                                     */
   /*             CLIPS Version 6.40  07/05/18            */
   /*                                                     */
   /*               I/O FUNCTIONS HEADER FILE             */
   /*******************************************************/

/*************************************************************/
/* Purpose:                                                  */
/*                                                           */
/* Principal Programmer(s):                                  */
/*      Gary D. Riley                                        */
/*                                                           */
/* Contributing Programmer(s):                               */
/*                                                           */
/* Revision History:                                         */
/*                                                           */
/*      6.24: Added the get-char, set-locale, and            */
/*            read-number functions.                         */
/*                                                           */
/*            Modified printing of floats in the format      */
/*            function to use the locale from the set-locale */
/*            function.                                      */
/*                                                           */
/*            Moved IllegalLogicalNameMessage function to    */
/*            argacces.c.                                    */
/*                                                           */
/*      6.30: Changed integer type/precision.                */
/*                                                           */
/*            Support for long long integers.                */
/*                                                           */
/*            Removed the undocumented use of t in the       */
/*            printout command to perform the same function  */
/*            as crlf.                                       */
/*                                                           */
/*            Replaced EXT_IO and BASIC_IO compiler flags    */
/*            with IO_FUNCTIONS compiler flag.               */
/*                                                           */
/*            Added a+, w+, rb, ab, r+b, w+b, and a+b modes  */
/*            for the open function.                         */
/*                                                           */
/*            Removed conditional code for unsupported       */
/*            compilers/operating systems (IBM_MCW and       */
/*            MAC_MCW).                                      */
/*                                                           */
/*            Used gensprintf instead of sprintf.            */
/*                                                           */
/*            Added put-char function.                       */
/*                                                           */
/*            Added SetFullCRLF which allows option to       */
/*            specify crlf as \n or \r\n.                    */
/*                                                           */
/*            Added AwaitingInput flag.                      */
/*                                                           */
/*            Added const qualifiers to remove C++           */
/*            deprecation warnings.                          */
/*                                                           */
/*      6.40: Removed LOCALE definition.                     */
/*                                                           */
/*            Pragma once and other inclusion changes.       */
/*                                                           */
/*            Added support for booleans with <stdbool.h>.   */
/*                                                           */
/*            Removed use of void pointers for specific      */
/*            data structures.                               */
/*                                                           */
/*            UDF redesign.                                  */
/*                                                           */
/*            Added print and println functions.             */
/*                                                           */
/*            Added unget-char function.                     */
/*                                                           */
/*            Added flush, rewind, tell, seek, and chdir     */
/*            functions.                                     */
/*                                                           */
/*************************************************************/

#ifndef _H_iofun

#pragma once

#define _H_iofun

   void                           IOFunctionDefinitions(Environment *);
#if IO_FUNCTIONS
   bool                           SetFullCRLF(Environment *,bool);
   void                           PrintoutFunction(Environment *,UDFContext *,UDFValue *);
   void                           PrintFunction(Environment *,UDFContext *,UDFValue *);
   void                           PrintlnFunction(Environment *,UDFContext *,UDFValue *);
   void                           ReadFunction(Environment *,UDFContext *,UDFValue *);
   void                           OpenFunction(Environment *,UDFContext *,UDFValue *);
   void                           CloseFunction(Environment *,UDFContext *,UDFValue *);
   void                           FlushFunction(Environment *,UDFContext *,UDFValue *);
   void                           RewindFunction(Environment *,UDFContext *,UDFValue *);
   void                           TellFunction(Environment *,UDFContext *,UDFValue *);
   void                           SeekFunction(Environment *,UDFContext *,UDFValue *);
   void                           GetCharFunction(Environment *,UDFContext *,UDFValue *);
   void                           UngetCharFunction(Environment *,UDFContext *,UDFValue *);
   void                           PutCharFunction(Environment *,UDFContext *,UDFValue *);
   void                           ReadlineFunction(Environment *,UDFContext *,UDFValue *);
   void                           FormatFunction(Environment *,UDFContext *,UDFValue *);
   void                           RemoveFunction(Environment *,UDFContext *,UDFValue *);
   void                           ChdirFunction(Environment *,UDFContext *,UDFValue *);
   void                           RenameFunction(Environment *,UDFContext *,UDFValue *);
   void                           SetLocaleFunction(Environment *,UDFContext *,UDFValue *);
   void                           ReadNumberFunction(Environment *,UDFContext *,UDFValue *);
#endif

#endif /* _H_iofun */