On Fri, 9 Apr 1999, Glynn Clements wrote:

> 
> [EMAIL PROTECTED] wrote:
> 
> > I wonder if there are some functions which converts strings
> > to/from lower/upper case ?? In DOS/WIN there was strupr 
> > funtio. When can i find it on Linux ??
> 
>       #include <ctype.h>
> 
>       void strupr(char *p)
>       {
>         while (*p)
>           *(p++) = toupper(*p);
>       }
> 

 Thanks it will help me !!!

--------------------------
Zbigniew Zagorski
[EMAIL PROTECTED]
 

Reply via email to