diff options
author | bloodstalker <thabogre@gmail.com> | 2017-03-13 10:47:53 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-03-13 10:47:53 +0000 |
commit | 5a684004adffb20dfacfb5c436f756764b5170f1 (patch) | |
tree | 19e0d952777b03daf37831eb466cf1dd2678a3e9 /daemon/daemon_aux.h | |
parent | added a ctags target (diff) | |
download | mutator-5a684004adffb20dfacfb5c436f756764b5170f1.tar.gz mutator-5a684004adffb20dfacfb5c436f756764b5170f1.zip |
trying to fix the tainted string issue
Diffstat (limited to 'daemon/daemon_aux.h')
-rw-r--r-- | daemon/daemon_aux.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/daemon/daemon_aux.h b/daemon/daemon_aux.h index 04a504d..e0b1954 100644 --- a/daemon/daemon_aux.h +++ b/daemon/daemon_aux.h @@ -24,7 +24,13 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.* /*headers*/ #include <stdio.h> /**********************************************************************************************************************/ +typedef int bool; +#define true 1 +#define false 0 +/**********************************************************************************************************************/ /*function prototypes*/ +bool cleanser(char cleansee[]); + int mutator_server(FILE* log_file); #endif |