lib/timeutils: add strxxx_iso() functions

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2016-05-11 15:31:02 +02:00
parent 627258104b
commit 3c201431ee
5 changed files with 117 additions and 1 deletions

View file

@ -212,6 +212,8 @@ static inline size_t ltrim_whitespace(unsigned char *str)
extern char *strnappend(const char *s, const char *suffix, size_t b);
extern char *strappend(const char *s, const char *suffix);
extern char *strfappend(const char *s, const char *format, ...)
__attribute__ ((__format__ (__printf__, 2, 0)));
extern const char *split(const char **state, size_t *l, const char *separator, int quoted);
extern int skip_fline(FILE *fp);