1#ifndef AF_UTILS_H 2#define AF_UTILS_H 3u_int32_t af_get_timestamp_sec(void); 4 5char *k_trim(char *s); 6 7int check_local_network_ip(unsigned int ip); 8 9void dump_str(char *name, unsigned char *p, int len); 10 11void dump_hex(char *name, unsigned char *p, int len); 12 13int k_sscanf(const char *buf, const char *fmt, ...); 14 15#endif 16 17