relicense to 0BSD
[pforth] / csrc / pf_core.h
CommitLineData
8e9db35f
PB
1/* @(#) pf_core.h 98/01/26 1.3 */
2#ifndef _pf_core_h
3#define _pf_core_h
4
5/***************************************************************
6** Include file for PForth 'C' Glue support
7**
8** Author: Phil Burk
9** Copyright 1994 3DO, Phil Burk, Larry Polansky, David Rosenboom
10**
1f99f95d
S
11** Permission to use, copy, modify, and/or distribute this
12** software for any purpose with or without fee is hereby granted.
13**
14** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
15** WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
16** WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
17** THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
18** CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
19** FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20** CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21** OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
8e9db35f
PB
22**
23***************************************************************/
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29void pfInitGlobals( void );
30
31void pfDebugMessage( const char *CString );
32void pfDebugPrintDecimalNumber( int n );
33
34cell_t pfUnitTestText( void );
35
36#ifdef __cplusplus
37}
38#endif
39
40
41#endif /* _pf_core_h */