C: secret handshake

This commit is contained in:
2021-08-13 14:39:36 +02:00
parent 01dd79be15
commit 021b014151
5 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef SECRET_HANDSHAKE_H
#define SECRET_HANDSHAKE_H
#include <stddef.h>
const char **commands(size_t number);
/* See GNUmakefile below for explanation
* https://github.com/braoult/exercism/blob/master/c/templates/GNUmakefile
*/
#if defined UNIT_TEST || defined DEBUG
#include <stdio.h>
#include <stdlib.h>
#endif
#ifdef TESTALL
#undef TEST_IGNORE
#define TEST_IGNORE() {}
#endif
#endif