source: buchla-68k/include/cmeta.h@ f7428b1

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

Started to rework include files.

  • Property mode set to 100644
File size: 623 bytes
Line 
1/*
2 =============================================================================
3 cmeta.h -- C-Meta parser macro header
4 Version 3 -- 1987-04-30 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8#pragma once
9
10#define CM_CHR(c) CMchr(c)
11#define CM_UCHR(c) CMuchr(c)
12
13#define CM_STR(s) CMstr(s)
14#define CM_USTR(s) CMustr(s)
15
16#define CM_NUM CMlong()
17#define CM_DIG CMdig()
18
19#define CM_LIST(l) CMlist(l)
20#define CM_ULIST(l) CMulist(l)
21
22#define CM_OK return(QQsw = TRUE)
23#define CM_NOGO return(QQsw = FALSE)
24
25#define CM_DBLK if (!QQanch) while (*QQip EQ ' ') ++QQip
Note: See TracBrowser for help on using the repository browser.