Last change
on this file since c59409e was 2340de6, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Keep macros in external declarations.
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[526a993] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | cminit.c -- external declarations
|
---|
| 4 | =============================================================================
|
---|
| 5 | */
|
---|
| 6 |
|
---|
[6262b5c] | 7 | #pragma once
|
---|
| 8 |
|
---|
| 9 | #include "stdint.h"
|
---|
| 10 |
|
---|
[2340de6] | 11 | #define CM_MXSTR 257 /* maximum parser string result length */
|
---|
| 12 |
|
---|
[6262b5c] | 13 | /*
|
---|
| 14 | =============================================================================
|
---|
[526a993] | 15 | external variables
|
---|
[6262b5c] | 16 | =============================================================================
|
---|
| 17 | */
|
---|
| 18 |
|
---|
| 19 | extern int16_t QQanch;
|
---|
| 20 | extern int8_t QQchr;
|
---|
| 21 | extern int8_t QQdig;
|
---|
| 22 | extern int8_t *QQin;
|
---|
| 23 | extern int8_t *QQip;
|
---|
| 24 | extern int16_t QQlnum;
|
---|
| 25 | extern int32_t QQnum;
|
---|
| 26 | extern int8_t *QQop;
|
---|
[2340de6] | 27 | extern int8_t QQstr[CM_MXSTR];
|
---|
[6262b5c] | 28 | extern int16_t QQsw;
|
---|
| 29 |
|
---|
| 30 | /*
|
---|
| 31 | =============================================================================
|
---|
[526a993] | 32 | external functions
|
---|
[6262b5c] | 33 | =============================================================================
|
---|
| 34 | */
|
---|
| 35 |
|
---|
| 36 | extern int16_t CMchr(int8_t c);
|
---|
| 37 | extern int16_t CMdig(void);
|
---|
| 38 | extern void CMinit(int8_t *ip);
|
---|
| 39 | extern int16_t CMlist(int8_t *l[]);
|
---|
| 40 | extern int16_t CMlong(void);
|
---|
| 41 | extern int16_t CMstat(int8_t *msg);
|
---|
| 42 | extern int16_t CMstr(int8_t *s);
|
---|
| 43 | extern int16_t CMuchr(int8_t c);
|
---|
| 44 | extern int16_t CMulist(int8_t *l[]);
|
---|
| 45 | extern int16_t CMustr(int8_t *s);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.