Differences From Artifact [4060441d9a]:
- File mkpw.c — part of check-in [6a14de1811] at 2019-07-20 23:37:03 on branch trunk — udpate xpriv to use sysv shmem by default; give iaia an option to generate its own types, and allow selecting between 7-bit and 8-bit encodings for ascii (defaulting to 8-bit); update mkpw to work with new iaia; update ord to add flag controlling byte length (7 or 8) for iaia's ascii mode (user: lexi, size: 6088) [annotate] [blame] [check-ins using]
To Artifact [e02ebfb705]:
- File mkpw.c — part of check-in [61813b7d9b] at 2019-08-13 02:28:46 on branch trunk — add missing --nocopy option to mkpw (user: lexi, size: 6117) [annotate] [blame] [check-ins using]
31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# define _cl_opt #endif #define options \ o('l',lower,mode = lower) \ o('m',mix,mode = mix) \ o('u',upper,mode = upper)\ _cl_opt enum /* constants */ { null = 0, true = 1, false = 0 }; typedef enum bad { |
> |
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# define _cl_opt
#endif
#define options \
o('l',lower,mode = lower) \
o('m',mix,mode = mix) \
o('u',upper,mode = upper)\
o('n',nocopy,copy = false)\
_cl_opt
enum /* constants */ {
null = 0, true = 1, false = 0
};
typedef enum bad {
|