diff options
| author | srdusr <trevorgray@srdusr.com> | 2024-03-02 23:02:22 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2024-03-02 23:02:22 +0200 |
| commit | 5b8c618ea1e6cb738662410fdf523cea417745a3 (patch) | |
| tree | a789a123320d1f9f7fbc404401b7feacc9f8c7f7 | |
| parent | 1bef1bce2517d04902b6ff227eaba8e4f8b483e2 (diff) | |
| download | cerberus-5b8c618ea1e6cb738662410fdf523cea417745a3.tar.gz cerberus-5b8c618ea1e6cb738662410fdf523cea417745a3.zip | |
New library needed for password policy <ctype.h>
| -rw-r--r-- | main.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ #ifndef MAIN_H #define MAIN_H +#include <ctype.h> #include <dirent.h> #include <openssl/aes.h> #include <openssl/err.h> @@ -42,4 +43,4 @@ void load_passwords(const char *dir, const char *user_password); void copy_to_clipboard(char *text); void print_ascii_art(const char *filename); -#endif /* MAIN_H */ +#endif |
