From f56709bfcdad99a47d52196ba971ff1d41746289 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Fri, 28 Oct 2022 02:02:13 +0100 Subject: don't need common.c --- common.c | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 common.c diff --git a/common.c b/common.c deleted file mode 100644 index f217001..0000000 --- a/common.c +++ /dev/null @@ -1,31 +0,0 @@ -#include -#include - - -#define SOCKDIR "/run/apionet" - -int -channel_socket_path(char chname[], char out[], size_t lim) -{ - if (strlen(chname) > 16) return -1; - if (snprintf(out, lim, SOCKDIR "/apionet.%s.sock", chname) >= lim) - return -1; - return 0; -} - -char *channels[] = { - "a","b","robots","jonathan","secret-channel",NULL, -}; - -int -main() -{ - char b[200]; - for (int i = 0; channels[i]; i++) { - memset(b,0,200); - channel_socket_path(channels[i], b, 200); - printf("%s\n",b); - } - return 0; -} - -- cgit v1.2.3