#ifndef _COMMP_UTIL_H
#define _COMMP_UTIL_H
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/types.h>
#define COMMP_CRLF "\r\n"
#define COMMP_LF "\n"
#define COMMP_SKIP_CRLF(msg_ptr) ((msg_ptr) = (msg_ptr) + 2)
#define COMMP_SKIP_LF(msg_ptr) ((msg_ptr) = (msg_ptr) + 1)
#define COMMP_SECS_IN_DAY 86400
#define COMMP_SECS_IN_HOUR 3600
#define COMMP_SECS_IN_MIN 60
#define COMMP_SP ' '
#define COMMP_CR '\r'
#define COMMP_COLON ':'
#define COMMP_SLASH '/'
#define COMMP_EQUALS '='
#define COMMP_ADDRTYPE_IP4 "IP4"
#define COMMP_ADDRTYPE_IP6 "IP6"
#define COMMP_COPY_STR(dst, src, len) { \
(dst) = calloc(1, (len) + 1); \
if ((dst) != NULL) { \
(void) strncpy((dst), (src), (len)); \
} \
}
extern int commp_skip_white_space(const char **, const char *);
extern int commp_find_token(const char **, const char **, const char *,
char, boolean_t);
extern int commp_atoi(const char *, const char *, int *);
extern int commp_strtoull(const char *, const char *, uint64_t *);
extern int commp_strtoub(const char *, const char *, uint8_t *);
extern int commp_atoui(const char *, const char *, uint_t *);
extern int commp_time_to_secs(const char *, const char *, uint64_t *);
extern int commp_add_str(char **, const char *, int);
#ifdef __cplusplus
}
#endif
#endif