diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2018-12-27 10:33:52 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2018-12-27 10:33:52 +0000 |
commit | 466c1be273ce2f7354532f876250cbc3d9d6cefd (patch) | |
tree | 96125dbdd41c4501c72a67daacb90e995b73b72c /WWW/Library/Implementation/HTString.h | |
parent | fd8ff03480d588c28b9424f2976beadbe7a55a35 (diff) | |
download | lynx-snapshots-466c1be273ce2f7354532f876250cbc3d9d6cefd.tar.gz |
snapshot of project "lynx", label v2-9-0dev_0b
Diffstat (limited to 'WWW/Library/Implementation/HTString.h')
-rw-r--r-- | WWW/Library/Implementation/HTString.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTString.h b/WWW/Library/Implementation/HTString.h index a5ff20dc..e5ab99e8 100644 --- a/WWW/Library/Implementation/HTString.h +++ b/WWW/Library/Implementation/HTString.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTString.h,v 1.39 2018/05/11 22:36:34 tom Exp $ + * $LynxId: HTString.h,v 1.40 2018/12/27 10:27:01 tom Exp $ * String handling for libwww * STRINGS * @@ -90,8 +90,8 @@ extern "C" { extern char *HTNextTok(char **pstr, const char *delims, const char *bracks, char *found); - extern char *HTSprintf(char **pstr, const char *fmt,...) GCC_PRINTFLIKE(2,3); - extern char *HTSprintf0(char **pstr, const char *fmt,...) GCC_PRINTFLIKE(2,3); + extern char *HTSprintf(char **pstr, const char *fmt, ...) GCC_PRINTFLIKE(2,3); + extern char *HTSprintf0(char **pstr, const char *fmt, ...) GCC_PRINTFLIKE(2,3); #if defined(LY_FIND_LEAKS) /* private otherwise */ extern char *StrAllocVsprintf(char **pstr, @@ -156,7 +156,7 @@ extern "C" { #define BStrCat0(d,s) HTSABCat0( &(d), s) #define BStrFree(d) HTSABFree( &(d)) - extern bstring *HTBprintf(bstring **pstr, const char *fmt,...) GCC_PRINTFLIKE(2,3); + extern bstring *HTBprintf(bstring **pstr, const char *fmt, ...) GCC_PRINTFLIKE(2,3); extern void trace_bstring(bstring *data); extern void trace_bstring2(const char *text, int size); |