Skip to content
Snippets Groups Projects
Commit 0e688773 authored by rswindell's avatar rswindell
Browse files

Created local strupr implementation for Unix builds.

parent dcf18681
No related branches found
No related tags found
No related merge requests found
......@@ -167,6 +167,23 @@ static void truncsp(char *str)
while(c && (uchar)str[c-1]<=SP) c--;
str[c]=0;
}
/****************************************************************************/
/* Convert ASCIIZ string to upper case */
/****************************************************************************/
#if defined(__unix__)
static char* strupr(char* str)
{
char* p=str;
while(*p) {
*p=toupper(*p);
p++;
}
return(str);
}
#endif
/****************************************************************************/
/* General menu function, see uifc.h for details. */
/****************************************************************************/
......@@ -174,7 +191,7 @@ int ulist(int mode, char left, int top, char width, int *cur, int *bar
, char *title, char **option)
{
char str[128];
int i,j,opts;
int i,opts;
int optnumlen;
int yesno=0;
int lines;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment