#ifndef INCLUDE_STDFUNC_H
#define INCLUDE_STDFUNC_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>


int strnicmp (char *s, char *d, int n);
char *stristr (char *s1, char *s2);


#endif