This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#ifndef __IPC_MSG_H__
|
|
#define __IPC_MSG_H__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "ipc.h"
|
|
void ipc_message_print (const struct ipc_message *m);
|
|
|
|
#endif
|