mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-01-22 02:05:38 +00:00
7 lines
264 B
C
7 lines
264 B
C
/* snytax.h syntax header file for vasm */
|
|
/* (c) in 2002 by Volker Barthelmann */
|
|
|
|
/* macros to recognize identifiers */
|
|
#define ISIDSTART(x) ((x)=='.'||(x)=='_'||isalpha((unsigned char)(x)))
|
|
#define ISIDCHAR(x) ((x)=='.'||(x)=='_'||isalnum((unsigned char)(x)))
|