20 lines
326 B
C
20 lines
326 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Korea language module */
|
|
|
|
#include <extend.h>
|
|
#include <ctype.h>
|
|
|
|
char *hb_monthsname[ 12 ] = {
|
|
"1월", "2월", "3월",
|
|
"4월", "5월", "6월", "7월",
|
|
"8월", "9월", "10월",
|
|
"11월", "12월" };
|
|
|
|
char *hb_daysname[ 7 ] = {
|
|
"일요일", "월요일", "화요일",
|
|
"수요일", "목요일", "금요일",
|
|
"토요일" };
|