1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-17 02:57:33 -05:00

Pull out parsing of ^C style strings from the terminal answerback code to

its own function, since I'll be wanting it for `terminal-modes'.

[originally from svn r5646]
This commit is contained in:
Jacob Nevins
2005-04-19 18:58:29 +00:00
parent 62a3389981
commit 3d012d9bd0
3 changed files with 47 additions and 16 deletions

1
misc.h
View File

@ -18,6 +18,7 @@ typedef struct Filename Filename;
typedef struct FontSpec FontSpec;
unsigned long parse_blocksize(const char *bs);
char ctrlparse(char *s, char **next);
char *dupstr(const char *s);
char *dupcat(const char *s1, ...);