X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/5471d09ad63fc6216fb9c2a3b52ca9c93821a054..1a41869194d74448de0b003f6f9f61468e44231b:/misc.h diff --git a/misc.h b/misc.h index d9b38119..12d0003f 100644 --- a/misc.h +++ b/misc.h @@ -3,6 +3,16 @@ #include "puttymem.h" +#ifndef FALSE +#define FALSE 0 +#endif +#ifndef TRUE +#define TRUE 1 +#endif + +char *dupstr(char *s); +char *dupcat(char *s1, ...); + struct bufchain_granule; typedef struct bufchain_tag { struct bufchain_granule *head, *tail;