Ignore:
Timestamp:
Nov 20, 2005 7:55:42 PM (18 years ago)
Author:
bennylp
Message:

Added hex character conversion utility in ctype

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/log.h

    r51 r62  
    2626 
    2727#include <pj/types.h> 
    28  
     28#include <stdarg.h> 
    2929 
    3030PJ_BEGIN_DECL 
     
    125125 
    126126/** 
     127 * Write to log. 
     128 * 
     129 * @param sender    Source of the message. 
     130 * @param level     Verbosity level. 
     131 * @param format    Format. 
     132 * @param marker    Marker. 
     133 */ 
     134PJ_DECL(void) pj_log(const char *sender, int level,  
     135                     const char *format, va_list marker); 
     136 
     137/** 
    127138 * Change log output function. The front-end logging functions will call 
    128139 * this function to write the actual message to the desired device.  
Note: See TracChangeset for help on using the changeset viewer.