1279e8b717189edb067b59970fee57c5f789cf13
[debian/pforth] / csrc / pf_core.h
1 /* @(#) pf_core.h 98/01/26 1.3 */\r
2 #ifndef _pf_core_h\r
3 #define _pf_core_h\r
4 \r
5 /***************************************************************\r
6 ** Include file for PForth 'C' Glue support\r
7 **\r
8 ** Author: Phil Burk\r
9 ** Copyright 1994 3DO, Phil Burk, Larry Polansky, David Rosenboom\r
10 **\r
11 ** The pForth software code is dedicated to the public domain,\r
12 ** and any third party may reproduce, distribute and modify\r
13 ** the pForth software code or any derivative works thereof\r
14 ** without any compensation or license.  The pForth software\r
15 ** code is provided on an "as is" basis without any warranty\r
16 ** of any kind, including, without limitation, the implied\r
17 ** warranties of merchantability and fitness for a particular\r
18 ** purpose and their equivalents under the laws of any jurisdiction.\r
19 **\r
20 ***************************************************************/\r
21 \r
22 #ifdef __cplusplus\r
23 extern "C" {\r
24 #endif\r
25 \r
26 void   pfInitGlobals( void );\r
27 \r
28 void   pfDebugMessage( const char *CString );\r
29 void   pfDebugPrintDecimalNumber( int n );\r
30         \r
31 cell_t pfUnitTestText( void );\r
32 \r
33 #ifdef __cplusplus\r
34 }   \r
35 #endif\r
36 \r
37 \r
38 #endif /* _pf_core_h */\r