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/msg-format.h

14 lines
251 B
C

#ifndef __MSG_FORMAT_H__
#define __MSG_FORMAT_H__
#include <assert.h>
#define MSG_TYPE_CON 1
#define MSG_TYPE_ERR 2
#define MSG_TYPE_ACK 4
int msg_format_con (char *buf, const char *constr, size_t *msgsize);
int msg_format_ack (char *buf);
#endif