diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-08-23 16:35:58 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-08-23 16:35:58 +0200 |
commit | 44cc09fd53e749808200829c1acc66f7044fbaa7 (patch) | |
tree | d7d637473affac0d4da96bc98468748c6751ecb0 /src/argparser.h | |
parent | fix variadic issue (diff) | |
download | argparser-44cc09fd53e749808200829c1acc66f7044fbaa7.tar.gz argparser-44cc09fd53e749808200829c1acc66f7044fbaa7.tar.bz2 argparser-44cc09fd53e749808200829c1acc66f7044fbaa7.tar.xz |
c version bug fix3.0
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/argparser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/argparser.h b/src/argparser.h index 32e2dd5..668e340 100644 --- a/src/argparser.h +++ b/src/argparser.h @@ -115,6 +115,11 @@ typedef struct */ long count; + /** + * Whether the item is used, that is, the data exists even if the count is zero + */ + long used; + } args_Array; |