Changeset 116 in libcf


Ignore:
Timestamp:
06/05/13 15:09:37 (11 years ago)
Author:
cheese
Message:

#1 fix and arrange doxygen comments

Location:
trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_base.h

    r112 r116  
    44 * @version 0.1
    55 *
    6  * @remarks 기본 정의
     6 * @brief 기본 정의
    77 *
    88 * @mainpage
  • trunk/include/cf_codec.h

    r96 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark 데이터 변환
     5 * @brief 데이터 변환
    66 *
    77 * @example codec.c
  • trunk/include/cf_debug.h

    r66 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark
     5 * @brief 디버그 유틸
     6 *
     7 * @remarks
    68 * 디버그 함수를 직접 호출하지 않고 정의된 매크로를 사용하면,
    79 * Preprocessor에 _DEBUG가 정의되어 있는 경우에 만
  • trunk/include/cf_error.h

    r109 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remarks 오류코드 모음
     5 * @brief 오류코드 모음
    66 */
    77#ifndef __CF_ERROR_H__
  • trunk/include/cf_file.h

    r109 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remarks 파일 I/O
     5 * @brief 파일 입출력
    66 *
    77 * @example file.c
  • trunk/include/cf_list.h

    r109 r116  
    22 * @file    cf_list.h
    33 * @author  myusgun <myusgun@gmail.com>
     4 *
     5 * @brief 연결 리스트
     6 *
     7 * @example list.c
    48 */
    59#ifndef __CF_LIST_H__
  • trunk/include/cf_log.h

    r109 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark
     5 * @brief 로그
     6 *
     7 * @remarks
    68 * 매핑 ID 값을 이용하여 해당 로그에 기록 <br />
    79 * 로그 레벨을 적용할 때도 용이하며 define 이나 enumeration 등을 활용하면 좋음
  • trunk/include/cf_queue.h

    r114 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark
     5 * @brief
    66 *
    77 * @example queue.c
  • trunk/include/cf_socket.h

    r109 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark TCP 소켓 지원
     5 * @brief TCP 소켓 지원
    66 *
    77 * @example socket.c
  • trunk/include/cf_stack.h

    r113 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark 스택
     5 * @brief 스택
    66 *
    77 * @example stack.c
  • trunk/include/cf_thread.h

    r109 r116  
    33 * @author  myusgun <myusgun@gmail.com>
    44 *
    5  * @remark 멀티스레드 및 뮤텍스 지원
     5 * @brief 멀티스레드 및 뮤텍스 지원
    66 *
    77 * @example thread.c
  • trunk/src/cf_codec.c

    r96 r116  
    7676 * @param hex   16진수 문자열을 저장할 주소
    7777 *
    78  * @remark
     78 * @remarks
    7979 * hex는 할당된 메모리이며, 크기는 '\0'를 제외하고 len * 2
    8080 */
     
    116116 * @param len   바이너리 데이터의 길이를 저장할 주소
    117117 *
    118  * @remark
     118 * @remarks
    119119 * bin는 할당된 메모리이며, 크기는 strlen (hex) / 2
    120120 */
     
    182182 * @param base64    base64 문자열을 저장할 주소
    183183 *
    184  * @remark
     184 * @remarks
    185185 * base64는 할당된 메모리이며, 크기는 '\0'를 제외하고 ((len + 2) / 3) * 4
    186186 */
     
    245245 * @param len       바이너리 데이터의 길이를 저장할 주소
    246246 *
    247  * @remark
     247 * @remarks
    248248 * base64는 할당된 메모리이며, 크기는 (strlen (base64)) / 4 * 3
    249249 */
  • trunk/src/cf_list.c

    r115 r116  
    135135 * @param element   삽입할 데이터 주소
    136136 *
    137  * @remark
     137 * @remarks
    138138 * traverser가 NULL일 때,
    139139 * direction이 CF_DIRECTION_BEFORE라면 Front 위치이고
  • trunk/src/cf_log.c

    r109 r116  
    448448 * @param ctx   로그 컨텍스트
    449449 *
    450  * @remark 반드시 먼저 초기화 해야하며, 초기화 시에 주어진 번호보다 작은 아이디 넘버를 사용
     450 * @remarks 반드시 먼저 초기화 해야하며, 초기화 시에 주어진 번호보다 작은 아이디 넘버를 사용
    451451 *
    452452 * @see CF_LOG_OPEN, CF_Log_CreateCtx
     
    472472 * @param mapid 로그의 아이디 넘버
    473473 *
    474  * @remark 아이디 넘버에 해당하는 컨텍스트가 해제되므로 주의
     474 * @remarks 아이디 넘버에 해당하는 컨텍스트가 해제되므로 주의
    475475 *
    476476 * @see CF_LOG_CLOSE, CF_Log_DestroyCtx
  • trunk/src/cf_thread.c

    r109 r116  
    126126 * @param threadID 스레드 아이디 주소
    127127 *
    128  * @remark 스레드 아이디를 해제하는 것이며 워커 스레드가 종료되지 않음
     128 * @remarks 스레드 아이디를 해제하는 것이며 워커 스레드가 종료되지 않음
    129129 */
    130130int
Note: See TracChangeset for help on using the changeset viewer.