Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #ifndef BIGLIB_H
  2. #define BIGLIB_H
  3.  
  4. #define DWORD unsigned long
  5.  
  6. extern DWORD _BigCreate(DWORD initValue);
  7.  
  8. #endif
  9.  
  10.  
  11. #include <stdio.h>
  12. #include "biglib.h"
  13.  
  14. int main(int argc, char *argv[])
  15. {
  16. unsigned long big = _BigCreate(0);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement