X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/d45d4c0758f73ebcc761afbda3b229d2ca11099e..HEAD:/misc.h diff --git a/misc.h b/misc.h index f4363e44..eff4a5e1 100644 --- a/misc.h +++ b/misc.h @@ -1,3 +1,7 @@ +/* + * Header for misc.c. + */ + #ifndef PUTTY_MISC_H #define PUTTY_MISC_H @@ -24,6 +28,9 @@ char *dupstr(const char *s); char *dupcat(const char *s1, ...); char *dupprintf(const char *fmt, ...); char *dupvprintf(const char *fmt, va_list ap); +void burnstr(char *string); + +int toint(unsigned); char *fgetline(FILE *fp); @@ -45,6 +52,8 @@ void bufchain_fetch(bufchain *ch, void *data, int len); struct tm ltime(void); +void smemclr(void *b, size_t len); + /* * Debugging functions. *