Skip to content
Snippets Groups Projects
Commit 1beac366 authored by rswindell's avatar rswindell
Browse files

Removed strupr() - conflicts with xpdev/genwrap.*

parent 1fceb6fb
No related branches found
No related tags found
No related merge requests found
...@@ -179,22 +179,6 @@ static int which(char* prompt, int max) ...@@ -179,22 +179,6 @@ static int which(char* prompt, int max)
} }
} }
/****************************************************************************/
/* Convert ASCIIZ string to upper case */
/****************************************************************************/
#if defined(__unix__) && !defined(__HAIKU__)
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. */ /* General menu function, see uifc.h for details. */
/****************************************************************************/ /****************************************************************************/
......
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