[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);
        }

-- 
Glynn Clements <[EMAIL PROTECTED]>

Reply via email to