mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
12 lines
142 B
C
12 lines
142 B
C
|
#ifndef GRAINS_H
|
||
|
#define GRAINS_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define MAX_SQUARES 64
|
||
|
|
||
|
uint64_t square(uint8_t index);
|
||
|
uint64_t total(void);
|
||
|
|
||
|
#endif
|