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/message.h

14 lines
205 B
C
Raw Normal View History

2018-10-03 21:52:11 +02:00
#ifndef __IPC_MSG_H__
#define __IPC_MSG_H__
2016-12-21 01:26:47 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2018-11-02 21:03:54 +01:00
#include <stdint.h>
#include "ipc.h"
2018-10-03 22:02:37 +02:00
void ipc_message_print (const struct ipc_message *m);
2016-12-21 01:26:47 +01:00
#endif