setlocale() - C函式


C庫函式 char *setlocale(int category, const char *locale) 設定或讀取位置相關的資訊。

宣告

以下是宣告的setLocale() 函式。

char *setlocale(int category, const char *locale)

引數

  • category -- 這是已命名的的常數,指定受區域設定的功能類別。

    • LC_ALL for all of the below.

    • LC_COLLATE for string comparison. see strcoll().

    • LC_CTYPE for character classification and conversion. For example strtoupper()

    • LC_MONETARY for monetary formatting for localeconv().

    • LC_NUMERIC for decimal separator for localeconv().

    • LC_TIME for date and time formatting with strftime().

    • LC_MESSAGES for system responses.

  • locale -- 如果locale是NULL或空字串' ',語言環境的名稱將被設定環境變數的值與上述類別相同的名稱。

返回值

一個成功的呼叫setlocale()返回一個不透明的字串所對應的語言環境集合。如果不能兌現的請求,返回值是NULL。

例子

下面的例子顯示使用的setlocale()函式。

#include <locale.h>
#include <stdio.h>
#include <time.h>

int main ()
{
   time_t currtime;
   struct tm *timer;
   char buffer[80];

   time( &currtime );
   timer = localtime( &currtime );

   printf("Locale is: %s
", setlocale(LC_ALL, "en_GB"));
   strftime(buffer,80,"%c", timer );
   printf("Date is: %s
", buffer);

  
   printf("Locale is: %s
", setlocale(LC_ALL, "de_DE"));
   strftime(buffer,80,"%c", timer );
   printf("Date is: %s
", buffer);

   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

Locale is: en_GB
Date is: Thu 23 Aug 2012 06:39:32 MST
Locale is: de_DE
Date is: Do 23 Aug 2012 06:39:32 MST