exercism/c/grains/grains.h

12 lines
142 B
C
Raw Normal View History

2024-06-09 11:52:24 -04:00
#ifndef GRAINS_H
#define GRAINS_H
#include <stdint.h>
#define MAX_SQUARES 64
uint64_t square(uint8_t index);
uint64_t total(void);
#endif