setlocale method

String setlocale(
  1. int category,
  2. String locale
)

Sets the program's current locale.

Currently, only the standard "C" locale is supported.

Implementation

String setlocale(int category, String locale) {
  return "C";
}