diff options
author | David Timber <mieabby@gmail.com> | 2021-08-09 17:30:18 +1000 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2021-08-09 19:20:40 +1000 |
commit | eea0a9fbbf1aff1eac1f17914d5c116de98e1d93 (patch) | |
tree | 776e61c070d7afa0df683093b82f327631534341 /src/util_rt.h | |
parent | f6e94a01fd84b693c5a74b8f40edb4dc89836bdf (diff) |
Protocol and build system change ...
* Use autoheader
* Add --enable-minmem
* Add OS code. Bin archive and protocol changed accordingly
* Add instance flags in hostinfo frame. Bitfield util added for this
* Add org_id in hostinfo for lineage record
* SQL schema change: store integer value of hostinfo arch and os
* Remove config.c
* prne_index_nybin() now sets errno
* Instance ids are now preserved for lineage record
* Proone: remove arguments after init
* Fix bug in prne_htbt_ser_bin_meta(): alloc_len is not checked
Diffstat (limited to 'src/util_rt.h')
-rw-r--r-- | src/util_rt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util_rt.h b/src/util_rt.h index 567cd4c..cdc6d50 100644 --- a/src/util_rt.h +++ b/src/util_rt.h @@ -45,6 +45,8 @@ char prne_ctolower (const char c); bool prne_cisspace (const char c); bool prne_cisprint (const char c); +bool prne_ciszero (const char c); + bool prne_nstreq (const char *a, const char *b); size_t prne_nstrlen (const char *s); char *prne_strnchr (const char *p, const char c, const size_t n); |