about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTString.h
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>1998-11-16 23:10:22 -0500
committerThomas E. Dickey <dickey@invisible-island.net>1998-11-16 23:10:22 -0500
commit2a2566112749f0e3f932004c1a9d8345a84b1fd0 (patch)
tree767c817721642a258f9e22802a4de5e981871780 /WWW/Library/Implementation/HTString.h
parentd3f9d5478df478427c2aa5db4507ddd0a38f0eb6 (diff)
downloadlynx-snapshots-2a2566112749f0e3f932004c1a9d8345a84b1fd0.tar.gz
snapshot of project "lynx", label v2-8-2dev_3
Diffstat (limited to 'WWW/Library/Implementation/HTString.h')
-rw-r--r--WWW/Library/Implementation/HTString.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/WWW/Library/Implementation/HTString.h b/WWW/Library/Implementation/HTString.h
index 0609cb00..85ca5d7f 100644
--- a/WWW/Library/Implementation/HTString.h
+++ b/WWW/Library/Implementation/HTString.h
@@ -1,4 +1,4 @@
-/*                                                                 String handling for libwww
+/*                                                   String handling for libwww
                                          STRINGS
                                              
    Case-independent string comparison and allocations with copies etc
@@ -51,11 +51,16 @@ extern char * HTNextField PARAMS ((char** pstr));
 
 /* A more general parser - kw */
 extern char * HTNextTok PARAMS((char ** pstr,
-		      const char * delims, const char * bracks, char * found));
-
+		      CONST char * delims, CONST char * bracks, char * found));
+
+#if USE_STDARG_H
+extern char * HTSprintf PARAMS((char ** pstr, CONST char * fmt, ...))
+			GCC_PRINTFLIKE(2,3);
+extern char * HTSprintf0 PARAMS((char ** pstr, CONST char * fmt, ...))
+			 GCC_PRINTFLIKE(2,3);
+#else
+extern char * HTSprintf PARAMS((char ** pstr, CONST char * fmt, va_alist));
+extern char * HTSprintf0 PARAMS((char ** pstr, CONST char * fmt, va_alist));
 #endif
-/*
 
-   end
-   
-    */
+#endif /* HTSTRING_H */