Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include "ctype.h"
  2. #include "string.h"
  3.  
  4. char * strupr(char *_s)
  5. {
  6.   char *rv = _s;
  7.   while (*_s)
  8.   {
  9.     *_s = toupper(*_s);
  10.     _s++;
  11.   }
  12.   return rv;
  13. }
  14.