Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/core/utils.h

12 lines
258 B
C
Raw Normal View History

2018-10-03 21:52:11 +02:00
#ifndef __IPC_UTIL_H__
#define __IPC_UTIL_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2018-10-04 01:54:12 +02:00
void print_hexa (const char *prefix, unsigned char *payload, size_t size);
void mprint_hexa (char *prefix, unsigned char *buf, size_t length);
#endif