]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blobdiff - misc.h
New hostname-handling functions in misc.c.
[PuTTY_svn.git] / misc.h
diff --git a/misc.h b/misc.h
index aa761999b7a396c7539643398911a363cd2a366d..d6a80bf0e74e5d400b272abfcdbd67b97392f5b4 100644 (file)
--- a/misc.h
+++ b/misc.h
@@ -24,6 +24,11 @@ typedef struct FontSpec FontSpec;
 unsigned long parse_blocksize(const char *bs);
 char ctrlparse(char *s, char **next);
 
+size_t host_strcspn(const char *s, const char *set);
+char *host_strchr(const char *s, int c);
+char *host_strrchr(const char *s, int c);
+char *host_strduptrim(const char *s);
+
 char *dupstr(const char *s);
 char *dupcat(const char *s1, ...);
 char *dupprintf(const char *fmt, ...)