meetup (C)

This commit is contained in:
2021-08-11 15:47:35 +02:00
parent cf4b1dbdc8
commit 31cd75c5a9
5 changed files with 278 additions and 0 deletions

19
c/meetup/src/meetup.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef MEETUP_H
#define MEETUP_H
int meetup_day_of_month(unsigned int year, unsigned int month, const char *week,
const char *day_of_week);
/* 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