-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.h
48 lines (36 loc) · 1.07 KB
/
input.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef INPUT_H
#define INPUT_H
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
// macro funzione file
#define f_in(f) in(f, NULL)
// macro funzione stringa
#define s_in(s, ...) in(NULL, s, ##__VA_ARGS__)
// macro funzione booleano
#define b_in(s, ...) \
({ \
char b = c(s_in(s "(y/N) ", ##__VA_ARGS__)); \
b == 'y' || b == 'Y'; \
})
// tipo stringa
typedef char *str;
// prototipi delle funzioni
bool v_str(const str, str);
str ln(const str);
size_t len(const str);
void c_str(str, const size_t, const char);
void f_cat(const str, const size_t, const char, str, ...);
void f_cpy(const str, str);
void f_repeat(const str, const char, const size_t, const bool);
void c_config(void);
str f_replace(const str, const char, const char);
str in(const str, str, ...);
int sel_in(const size_t, str, str, ...);
char c(const str);
int i(const str);
long l(const str);
long long ll(const str);
float f(const str);
double d(const str);
#endif /* INPUT_H */