Changeset 154 in libcf for trunk/include/cf_util.h


Ignore:
Timestamp:
11/04/13 16:24:55 (11 years ago)
Author:
cheese
Message:

#1 fix file-context bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_util.h

    r152 r154  
    1515#define CF_UTIL_DATETIME_LENGTH (sizeof ("0000-00-00 00:00:00.000") - 1)
    1616
     17typedef enum
     18{
     19    SUN = 0,    /**< 일요일 */
     20    MON,        /**< 월요일 */
     21    TUE,        /**< 화요일 */
     22    WED,        /**< 수요일 */
     23    THU,        /**< 목요일 */
     24    FRI,        /**< 금요일 */
     25    SAT,        /**< 토요일 */
     26} CF_UTIL_WEEK;
     27
    1728typedef struct __cf_util_datetime__
    1829{
    19     int year;
    20     int month;
    21     int day;
    22     int week; /* SUN:0 ~ SAT:6 */
     30    int             year;   /**< 년. */
     31    int             month;  /**< 월. */
     32    int             day;    /**< 일. */
     33    CF_UTIL_WEEK    week;   /**< 요일. */
    2334
    24     int hour;
    25     int min;
    26     int sec;
    27     int usec;
     35    int             hour;   /**< 시간. */
     36    int             min;    /**< 분. */
     37    int             sec;    /**< 초. */
     38    int             usec;   /**< 마이크로 초. */
    2839} CF_UTIL_DATETIME;
    2940
Note: See TracChangeset for help on using the changeset viewer.