X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?p=subdirmk.git;a=blobdiff_plain;f=lib%2Ftoylib.h;fp=lib%2Ftoylib.h;h=0000000000000000000000000000000000000000;hp=04848d5ecf297f719dce1327aaaf962cdfec82df;hb=25a516a59e7811b8626b5fe40b49c5ef942db697;hpb=c8c7630c9523d18365953077522995995de0fc58 diff --git a/lib/toylib.h b/lib/toylib.h deleted file mode 100644 index 04848d5..0000000 --- a/lib/toylib.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * subdirmk - example code - * Copyright 2019 Mark Wooding - * SPDX-License-Identifier: LGPL-2.0-or-later - */ - -#ifndef LIBTOY_H -#define LIBTOY_H - -#include - -#define STRCMP(x, op, y) (strcmp((x), (y)) op 0) -#define STRNCMP(x, op, y, n) (strncmp((x), (y), (n)) op 0) -#define MEMCMP(x, op, y, n) (memcmp((x), (y), (n)) op 0) - -extern const char *greeting(void); - -#endif