1.4.0 Renamed sock_create() to sock()

This commit is contained in:
seajee
2025-04-26 23:21:15 +02:00
parent c5010e17d1
commit 31d7930b78
10 changed files with 40 additions and 39 deletions

View File

@@ -6,7 +6,7 @@
int main(void)
{
Sock *client = sock_create(SOCK_IPV4, SOCK_UDP);
Sock *client = sock(SOCK_IPV4, SOCK_UDP);
if (client == NULL) {
perror("sock_create");
return 1;