1
0
mirror of https://github.com/mist-devel/mist-board.git synced 2026-01-25 11:26:47 +00:00
Files
mist-devel.mist-board/tools/vasm/syntax/oldstyle/syntax.h
2014-01-31 12:21:39 +00:00

7 lines
252 B
C

/* syntax.h syntax header file for vasm */
/* (c) in 2002,2012 by Frank Wille */
/* macros to recognize identifiers */
#define ISIDSTART(x) ((x)=='.'||(x)=='_'||isalpha((unsigned char)(x)))
#define ISIDCHAR(x) ((x)=='_'||isalnum((unsigned char)(x)))