mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-23 04:25:42 +02:00
10 lines
207 B
C
10 lines
207 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
|
|
bool i3_get_socket_address(struct sockaddr_un *addr);
|
|
bool i3_send_pkg(int sock, int cmd, char *data);
|