Imported Upstream version 21
[debian/pforth] / csrc / pf_words.h
1 /* @(#) pf_words.h 96/12/18 1.7 */
2 #ifndef _pforth_words_h
3 #define _pforth_words_h
4
5 /***************************************************************
6 ** Include file for PForth Words
7 **
8 ** Author: Phil Burk
9 ** Copyright 1994 3DO, Phil Burk, Larry Polansky, Devid 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
23 extern "C" {
24 #endif
25
26 void ffDot( int32 n );
27 void ffDotHex( int32 n );
28 void ffDotS( void );
29 cell ffSkip( char *AddrIn, cell Cnt, char c, char **AddrOut );
30 cell ffScan( char *AddrIn, cell Cnt, char c, char **AddrOut );
31
32 #ifdef __cplusplus
33 }   
34 #endif
35
36 #endif /* _pforth_words_h */