Differences From Artifact [2857320b30]:
- File mkpw.c — part of check-in [6b3b3fa87f] at 2019-07-19 11:47:45 on branch trunk — switch from syscall to getrandom (user: lexi, size: 6059) [annotate] [blame] [check-ins using]
To 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]
56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
enum /* iaia errors */ { iaia_e_ok = ok, iaia_e_base = fail, iaia_e_domain = fail, iaia_e_overflow = fail, }; #define _IAIA_FN_ATOI katoi #include "clib/iaia.c" typedef enum { tbl_ok = ok, tbl_error = fail } tbl_error_type; typedef unsigned char tbl_word_type; #include "clib/tbl.c" |
> |
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
enum /* iaia errors */ {
iaia_e_ok = ok,
iaia_e_base = fail,
iaia_e_domain = fail,
iaia_e_overflow = fail,
};
#define _IAIA_FN_ATOI katoi
#define _IAIA_EXTERNAL_TYPES
#include "clib/iaia.c"
typedef enum {
tbl_ok = ok, tbl_error = fail
} tbl_error_type;
typedef unsigned char tbl_word_type;
#include "clib/tbl.c"
|