Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <locale.h>
  3. #include <string.h>
  4.  
  5. char *setlocale(int category, const char *locale)
  6. {
  7.   static char CLOCALE[] = "C";
  8.   if (locale == 0)
  9.     return CLOCALE;
  10.   if (strcmp(locale, CLOCALE) && strcmp(locale, "POSIX") && locale[0])
  11.     return 0;
  12.   return CLOCALE;
  13. }
  14.