X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=misc.h;h=77394469b9b0b5df716cce713c804d65e244b3a9;hb=d77102a8d535a7000d6d909529a61a1564f6d678;hp=7d0ee4d59a46d9be77b5bc10ae9c0dab491d05f8;hpb=6f693ffeb08b3428bcf7a3ba76731eaebb575727;p=PuTTY.git diff --git a/misc.h b/misc.h index 7d0ee4d5..77394469 100644 --- a/misc.h +++ b/misc.h @@ -3,6 +3,7 @@ #include "puttymem.h" +#include /* for FILE * */ #include /* for va_list */ #ifndef FALSE @@ -15,11 +16,15 @@ typedef struct Filename Filename; typedef struct FontSpec FontSpec; +unsigned long parse_blocksize(const char *bs); + char *dupstr(const char *s); char *dupcat(const char *s1, ...); char *dupprintf(const char *fmt, ...); char *dupvprintf(const char *fmt, va_list ap); +char *fgetline(FILE *fp); + void base64_encode_atom(unsigned char *data, int n, char *out); struct bufchain_granule;