diff options
author | Mattias Andrée <maandree@kth.se> | 2022-06-10 19:34:11 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-06-10 19:34:11 +0200 |
commit | 5d2bbca39c79dcc73060ac480a4e229affef0a14 (patch) | |
tree | 835ab061b3c1c5f1e80c6e76ef94751f78416929 /Makefile | |
parent | fix typo (diff) | |
download | libsimple-5d2bbca39c79dcc73060ac480a4e229affef0a14.tar.gz libsimple-5d2bbca39c79dcc73060ac480a4e229affef0a14.tar.bz2 libsimple-5d2bbca39c79dcc73060ac480a4e229affef0a14.tar.xz |
Add strto[u]{hh,h,z}, strto{i,u}{,8,16,32,64}
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -36,6 +36,7 @@ SUBHDR =\ libsimple/strdup.h\ libsimple/strn.h\ libsimple/strndup.h\ + libsimple/strtoint.h\ libsimple/time.h\ libsimple/valloc.h\ libsimple/vallocz.h\ @@ -192,8 +193,24 @@ OBJ =\ strrnstr.o\ strrstr.o\ strstarts.o\ + strtoh.o\ + strtohh.o\ + strtoi.o\ + strtoi16.o\ + strtoi32.o\ + strtoi64.o\ + strtoi8.o\ strtotimespec.o\ strtotimeval.o\ + strtou.o\ + strtou16.o\ + strtou32.o\ + strtou64.o\ + strtou8.o\ + strtouh.o\ + strtouhh.o\ + strtouz.o\ + strtoz.o\ sumtimespec.o\ sumtimeval.o\ timespec2timeval.o\ |