frontlib/logging.h
changeset 7162 fe76d24a25d7
parent 7160 c42949cfdd92
child 7166 8d1d6adf5f82
equal deleted inserted replaced
7160:c42949cfdd92 7162:fe76d24a25d7
     1 /*
       
     2  *
       
     3  */
       
     4 
       
     5 #ifndef LOGGING_H_
       
     6 #define LOGGING_H_
       
     7 
       
     8 #include<stdint.h>
       
     9 
       
    10 char* flib_format_ip(uint32_t numip);
       
    11 
       
    12 void flib_log_e(const char *fmt, ...);
       
    13 void flib_log_w(const char *fmt, ...);
       
    14 void flib_log_i(const char *fmt, ...);
       
    15 
       
    16 #endif /* LOGGING_H_ */