network.h 240 B

123456789101112131415
  1. //
  2. // Created by janco on 25-2-16.
  3. //
  4. #ifndef _Network_H
  5. #define _Network_H
  6. #include "typedefs.h"
  7. extern void NetworkInit(void);
  8. extern void httpGet(char address[], void (*parser)(char*));
  9. char* getMacAdress();
  10. #endif /* _Network_H */