blob: 7c73fc85229d6a834b499e883bbfa47fdd175513 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef SF_UTILS_H
#define SF_UTILS_H
#include "fm.h"
#include "wm.h"
#include <stdbool.h>
int get_input(const char *prompt, char *buf, size_t len);
bool y_or_n(const char *prompt);
#endif /* SF_UTILS_H */
|