simple-discuss/src/utils.h

12 lines
211 B
C
Raw Normal View History

2023-07-03 14:58:09 +03:00
#ifndef UTILS_H
#define UTILS_H
2023-07-03 20:25:23 +03:00
int contain_special(const char *s);
2023-07-05 14:43:56 +03:00
int is_valid_username(const char *s);
int is_valid_password(const char *s);
2023-07-03 14:58:09 +03:00
char *mk_specialchars(const char *input);
#endif /* UTILS_H */