comparison lwasm/lwasm.h @ 467:a6c9129e5948

Move version header into a common direction to better reflect what it is. The version header isn't really associated with lwlib itself since that is intended to be some generic type routines that can be used by other programs. It is, however, directly associated with lwtools. Thus, it should be related to lwtools itself rather than the more generic lwlib.
author William Astle <lost@l-w.ca>
date Thu, 01 Mar 2018 21:25:51 -0700
parents cad5937314cb
children 2c1c5dd84024
comparison
equal deleted inserted replaced
458:3948c874901b 467:a6c9129e5948
27 #endif 27 #endif
28 28
29 #include <lw_expr.h> 29 #include <lw_expr.h>
30 #include <lw_stringlist.h> 30 #include <lw_stringlist.h>
31 #include <lw_stack.h> 31 #include <lw_stack.h>
32 #include <lw_version.h> 32
33 #include <version.h>
33 34
34 // these are allowed chars BELOW 0x80 for symbols 35 // these are allowed chars BELOW 0x80 for symbols
35 // first is symbol start chars, second is anywhere in symbol 36 // first is symbol start chars, second is anywhere in symbol
36 #define SSYMCHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_@$" 37 #define SSYMCHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_@$"
37 #define SYMCHARS SSYMCHARS ".?0123456789" 38 #define SYMCHARS SSYMCHARS ".?0123456789"