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-10 23:08:58 +02:00
|
|
|
#ifndef __IPC_CLIENT_H__
|
|
|
|
#define __IPC_CLIENT_H__
|
2018-10-04 01:22:50 +02:00
|
|
|
|
2018-11-02 21:03:54 +01:00
|
|
|
#include <stdint.h>
|
2018-11-04 09:50:17 +01:00
|
|
|
#include "ipc.h"
|
2018-10-04 01:22:50 +02:00
|
|
|
|
2018-10-08 16:15:35 +02:00
|
|
|
void ipc_clients_print (struct ipc_clients *);
|
2018-10-04 01:22:50 +02:00
|
|
|
void client_print (struct ipc_client *);
|
2018-11-04 09:50:17 +01:00
|
|
|
|
2018-10-04 01:22:50 +02:00
|
|
|
#endif
|