This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-10-03 21:52:11 +02:00
|
|
|
#ifndef __IPC_UTIL_H__
|
|
|
|
#define __IPC_UTIL_H__
|
2016-12-19 19:20:27 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-11-02 21:03:54 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-01-01 12:11:34 +01:00
|
|
|
void error_message_format (char *formatted_message, const char *tag, const char *message, ...);
|
|
|
|
void print_hexa (const char *prefix, uint8_t * payload, size_t size);
|
2016-12-19 19:20:27 +01:00
|
|
|
|
|
|
|
#endif
|