source: buchla-68k/ram/cminit.x@ 526a993

Last change on this file since 526a993 was 526a993, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Wording change.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 =============================================================================
3 cminit.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "stdint.h"
10
11/*
12 =============================================================================
13 external variables
14 =============================================================================
15*/
16
17extern int16_t QQanch;
18extern int8_t QQchr;
19extern int8_t QQdig;
20extern int8_t *QQin;
21extern int8_t *QQip;
22extern int16_t QQlnum;
23extern int32_t QQnum;
24extern int8_t *QQop;
25extern int8_t QQstr[257];
26extern int16_t QQsw;
27
28/*
29 =============================================================================
30 external functions
31 =============================================================================
32*/
33
34extern int16_t CMchr(int8_t c);
35extern int16_t CMdig(void);
36extern void CMinit(int8_t *ip);
37extern int16_t CMlist(int8_t *l[]);
38extern int16_t CMlong(void);
39extern int16_t CMstat(int8_t *msg);
40extern int16_t CMstr(int8_t *s);
41extern int16_t CMuchr(int8_t c);
42extern int16_t CMulist(int8_t *l[]);
43extern int16_t CMustr(int8_t *s);
Note: See TracBrowser for help on using the repository browser.