mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
11 lines
142 B
C
11 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
|