Move more functions out of hashcat.c

This commit is contained in:
jsteube
2016-09-28 23:53:46 +02:00
parent de21c005fd
commit df23d5b4e9
5 changed files with 118 additions and 100 deletions
+5
View File
@@ -9,6 +9,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
bool is_power_of_2 (const u32 v);
@@ -25,4 +26,8 @@ void naive_escape (char *s, size_t s_max, const u8 key_char, const u8 escape_cha
void hc_sleep_ms (const int msec);
void hc_sleep (const int sec);
void setup_environment_variables ();
void setup_umask ();
void setup_seeding (const bool rp_gen_seed_chgd, const u32 rp_gen_seed);
#endif // _SHARED_H
+3
View File
@@ -23,6 +23,9 @@
#include <windows.h>
#endif // _WIN
void welcome_screen (const user_options_t *user_options, const time_t proc_start);
void goodbye_screen (const user_options_t *user_options, const time_t proc_start, const time_t proc_stop);
int setup_console ();
void send_prompt ();