21 lines
310 B
C
21 lines
310 B
C
/* zodiac - advanced dns spoofer
|
|
*
|
|
* by team teso
|
|
*/
|
|
|
|
#ifndef _Z_GUI_H
|
|
#define _Z_GUI_H
|
|
#include "dns-spoof-int.h"
|
|
|
|
|
|
void menu_prompt (char *add);
|
|
void menu_clear (void);
|
|
void menu_test (void);
|
|
void menu_set (void);
|
|
void menu_spoof (void);
|
|
void menu_handle (void);
|
|
char *menu_input (void);
|
|
|
|
|
|
#endif
|
|
|