diff options
| author | Mattias Andrée <maandree@kth.se> | 2016-03-02 09:11:48 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2016-03-02 09:12:31 +0100 |
| commit | ea2d6c93d28a9c5af94035057c52c36f0618ba2c (patch) | |
| tree | 73cc4b6cbb66e623ae6f5ee933c489bae97a01d8 /src/internals.h | |
| parent | Why zbits returns 1 for 0 (diff) | |
| download | libzahl-ea2d6c93d28a9c5af94035057c52c36f0618ba2c.tar.gz libzahl-ea2d6c93d28a9c5af94035057c52c36f0618ba2c.tar.bz2 libzahl-ea2d6c93d28a9c5af94035057c52c36f0618ba2c.tar.xz | |
zstr_length_positive is safe for non-positive, hence rename to zstr_length; and add zstr_length
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/internals.h')
| -rw-r--r-- | src/internals.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/internals.h b/src/internals.h index df973fb..a544924 100644 --- a/src/internals.h +++ b/src/internals.h @@ -9,7 +9,10 @@ #define BITS_IN_LAST_CHAR(bits) ((bits) & (BITS_PER_CHAR - 1)) #define LIST_TEMPS\ - X(libzahl_tmp_cmp) + X(libzahl_tmp_cmp)\ + X(libzahl_tmp_str_num)\ + X(libzahl_tmp_str_mag)\ + X(libzahl_tmp_str_div) #define X(x) extern z_t x; LIST_TEMPS |
