cJSON_port.h 307 B

1234567891011121314151617
  1. #ifndef CJSON_PORT_H
  2. #define CJSON_PORT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* libc dependent function */
  7. double fabs(double x);
  8. double strtod(const char *nptr,char **endptr);
  9. int sscanf(const char *s, const char *fmt, ...);
  10. #ifdef __cplusplus
  11. } /* extern "C" { */
  12. #endif
  13. #endif /* CJSON_PORT_H */