#ifndef __zl_util_h__
#define __zl_util_h__

#ifdef __cplusplus
extern "C" {
#endif

int zarlinkUtilInit(void);
int zarlinkUtilMinInit(void);

/* TODO: put htons, htonl, etc. routines in their own module at some point */
unsigned short byteSwap16(unsigned short);
void swapMac(unsigned char * pMac);
int parseDottedQuadV4(char *, unsigned char *);

#ifdef __cplusplus
}
#endif

#endif /* __zl_util_h__ */

