X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0f695324ed4963065d9a5c4308d281a02fd237f1..67dc75818d2a5905e09851feeb9dba23f815dd67:/h/mh.h diff --git a/h/mh.h b/h/mh.h index bebe8b86..bb06366b 100644 --- a/h/mh.h +++ b/h/mh.h @@ -16,6 +16,13 @@ #define DMAXFOLDER 4 /* typical number of digits */ #define MAXFOLDER 1000 /* message increment */ +/* non-zero exit(3) values indicating the number of errors need to be + * capped else they interfere with the shell's use of high seven-bit + * values, and the shell's mapping of signals onto top-bit-set values. + * Plus, every so often the eight-bit value will wrap to zero, wrongly + * indicating success. */ +#define MAX_EXIT 120 + /* * This macro is for use by scan, for example, so that platforms with * a small BUFSIZ can easily allocate larger buffers. @@ -39,6 +46,7 @@ typedef unsigned char boolean; /* not int so we can pack in a structure */ #define CONST __attribute__((const)) #define MALLOC __attribute__((malloc)) #define NONNULL(...) __attribute__((nonnull(__VA_ARGS__))) +#define PURE __attribute__((pure)) #define NMH_UNUSED(i) (void) i #else #define NORETURN @@ -47,6 +55,7 @@ typedef unsigned char boolean; /* not int so we can pack in a structure */ #define CONST #define MALLOC #define NONNULL(...) +#define PURE #define NMH_UNUSED(i) i #endif @@ -84,8 +93,8 @@ void charstring_clear (charstring_t) NONNULL(1); const char *charstring_buffer (const charstring_t) NONNULL(1); /* User is responsible for free'ing result of buffer copy. */ char *charstring_buffer_copy (const charstring_t) NONNULL(1); -size_t charstring_bytes (const charstring_t) NONNULL(1); -size_t charstring_chars (const charstring_t) NONNULL(1); +size_t charstring_bytes (const charstring_t) NONNULL(1) PURE; +size_t charstring_chars (const charstring_t) NONNULL(1) PURE; /* Length of the last character in the charstring. */ int charstring_last_char_len (const charstring_t) NONNULL(1); @@ -218,8 +227,8 @@ void bvector_fini(struct bvector *bv) NONNULL(1); void bvector_clear (bvector_t, size_t) NONNULL(1); void bvector_clear_all (bvector_t) NONNULL(1); void bvector_set (bvector_t, size_t) NONNULL(1); -unsigned int bvector_at (bvector_t, size_t) NONNULL(1); -unsigned long bvector_first_bits (bvector_t) NONNULL(1); +unsigned int bvector_at (bvector_t, size_t) NONNULL(1) PURE; +unsigned long bvector_first_bits (bvector_t) NONNULL(1) PURE; typedef struct svector *svector_t; @@ -227,9 +236,9 @@ svector_t svector_create (size_t); void svector_free (svector_t) NONNULL(1); char *svector_push_back (svector_t, char *) NONNULL(1); char *svector_at (svector_t, size_t) NONNULL(1); -char **svector_find(svector_t, const char *) NONNULL(1); -char **svector_strs (svector_t) NONNULL(1); -size_t svector_size (svector_t) NONNULL(1); +char **svector_find(svector_t, const char *) NONNULL(1) PURE; +char **svector_strs (svector_t) NONNULL(1) PURE; +size_t svector_size (svector_t) NONNULL(1) PURE; typedef struct ivector *ivector_t;