1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Restructured the compat functions and changed its license.

New fucntion xstrconcat for future use.
This commit is contained in:
Werner Koch 2009-08-25 20:00:24 +00:00
parent f5f0171d55
commit 20fe42d10b
11 changed files with 193 additions and 24 deletions

View file

@ -1,3 +1,7 @@
2009-08-25 Werner Koch <wk@g10code.com>
* compat.h: Add xstrconcat.
2009-08-11 David Shaw <dshaw@jabberwocky.com>
* util.h: Add string_to_utf8() from GPA.

View file

@ -15,4 +15,11 @@ int ascii_strncasecmp( const char *a, const char *b, size_t n);
char *strsep (char **stringp, const char *delim);
#endif
#if __GNUC__ >= 4
char *xstrconcat (const char *s1, ...) __attribute__ ((sentinel(0)));
#else
char *xstrconcat (const char *s1, ...);
#endif
#endif /* !_COMPAT_H_ */