blob: c539ad956b517ceab37ed98f38f8558807f9c7f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
int xsnprintf(char *str, size_t size, const char *restrict format, ...);
#endif /* SF_UTILS_H */
|