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:
parent
f5f0171d55
commit
20fe42d10b
11 changed files with 193 additions and 24 deletions
|
@ -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.
|
||||
|
|
|
@ -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_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue