Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #ifndef MISC_H_
  2. #define MISC_H_
  3. #define BYTE 8
  4.  
  5. #include <stdbool.h>
  6. #include <stdio.h>
  7. #include "DataStruct.h"
  8.  
  9. bool S_areEqual(char *firstString, char *secondString); /* (1) */
  10. bool S_randomDataStructureCheck(char *string, DataStruct *data); /* (2) */
  11.  
  12. #endif
  13.  
  14. #ifndef MISC_H_
  15. #define MISC_H_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement