1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Put prototypes for the functions exported by wcwidth.c in putty.h, and remove

one from terminal.c.  Have wcwidth.c include putty.h to get its prototypes.

[originally from svn r2377]
This commit is contained in:
Ben Harris
2002-12-29 15:08:27 +00:00
parent 4345935c22
commit 873b95deff
3 changed files with 8 additions and 1 deletions

View File

@ -599,6 +599,12 @@ char *cp_enumerate (int index);
char *cp_name(int codepage);
void get_unitab(int codepage, wchar_t * unitab, int ftype);
/*
* Exports from wcwidth.c
*/
int wcwidth(wchar_t ucs);
int wcswidth(const wchar_t *pwcs, size_t n);
/*
* Exports from mscrypto.c
*/