https://github.com/git/git
Raw File
Tip revision: f2771efd07b51edae023db95fcca39c72a0397fe authored by Jonathan Nieder on 19 April 2020, 23:30:27 UTC
Git 2.23.3
Tip revision: f2771ef
unix-socket.h
#ifndef UNIX_SOCKET_H
#define UNIX_SOCKET_H

int unix_stream_connect(const char *path);
int unix_stream_listen(const char *path);

#endif /* UNIX_SOCKET_H */
back to top