add input functions
This commit is contained in:
13
include/input.h
Normal file
13
include/input.h
Normal file
@ -0,0 +1,13 @@
|
||||
#ifndef LIBFLINT_INPUT_H
|
||||
#define LIBFLINT_INPUT_H
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
char *get_input(const char *);
|
||||
char **split(const char *, size_t *, const char *);
|
||||
char **get_lines(const char *, size_t *);
|
||||
int *get_ints(const char *, size_t *);
|
||||
void del_split(char **);
|
||||
void del_lines(char **);
|
||||
|
||||
#endif // LIBFLINT_INPUT_H
|
Reference in New Issue
Block a user