add basic math functions

This commit is contained in:
2021-12-10 14:33:37 -08:00
parent 12363f0ed6
commit 6737c3a781
5 changed files with 39 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include <stdlib.h>
char *get_input(const char *);
char **split(const char *, size_t *, const char *);
char **split(char *, size_t *, const char *);
char **get_lines(const char *, size_t *);
int *get_ints(const char *, size_t *);
void del_split(char **);

8
include/math.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef LIBFLINT_H_MATH
#define LIBFLINT_H_MATH
int max_int(int a, int b);
int min_int(int a, int b);
int binstr_to_int(const char *s);
#endif // LIBFLINT_H_MATH