Made funcs extern...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton 2003-12-14 23:04:53 +00:00
parent 328b515e87
commit 0f314c30b8

View File

@ -178,16 +178,16 @@ static struct cvec *getcvec(struct vars *, int, int, int);
static void freecvec(struct cvec *);
/* === regc_locale.c === */
static int wx_isdigit(wx_wchar c);
static int wx_isalpha(wx_wchar c);
static int wx_isalnum(wx_wchar c);
static int wx_isupper(wx_wchar c);
static int wx_islower(wx_wchar c);
static int wx_isgraph(wx_wchar c);
static int wx_ispunct(wx_wchar c);
static int wx_isspace(wx_wchar c);
static wx_wchar wx_toupper(wx_wchar c);
static wx_wchar wx_tolower(wx_wchar c);
extern int wx_isdigit(wx_wchar c);
extern int wx_isalpha(wx_wchar c);
extern int wx_isalnum(wx_wchar c);
extern int wx_isupper(wx_wchar c);
extern int wx_islower(wx_wchar c);
extern int wx_isgraph(wx_wchar c);
extern int wx_ispunct(wx_wchar c);
extern int wx_isspace(wx_wchar c);
extern wx_wchar wx_toupper(wx_wchar c);
extern wx_wchar wx_tolower(wx_wchar c);
static int nmcces(struct vars *);
static int nleaders(struct vars *);
static struct cvec *allmcces(struct vars *, struct cvec *);