graph.h 247 B

123456789101112131415
  1. #pragma once
  2. #ifndef _GRAPH_H_
  3. #define _GRAPH_H_
  4. /* function prototypes */
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. void graph_Init(void);
  9. void graph_Draw(uint32_t u_value, uint32_t i_value);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif /* _GRAPH_H_ */