Merge pull request #70 from philburk/ignoreds
[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**
11** The pForth software code is dedicated to the public domain,
12** and any third party may reproduce, distribute and modify
13** the pForth software code or any derivative works thereof
14** without any compensation or license. The pForth software
15** code is provided on an "as is" basis without any warranty
16** of any kind, including, without limitation, the implied
17** warranties of merchantability and fitness for a particular
18** purpose and their equivalents under the laws of any jurisdiction.
19**
20***************************************************************/
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26void pfInitGlobals( void );
27
28void pfDebugMessage( const char *CString );
29void pfDebugPrintDecimalNumber( int n );
30
31cell_t pfUnitTestText( void );
32
33#ifdef __cplusplus
34}
35#endif
36
37
38#endif /* _pf_core_h */