Guest User

Untitled

a guest
May 27th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #ifndef BUCHO_H
  2. #define BUCHO_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. typedef struct bucho_t {
  9. int bucho;
  10. } bucho_t;
  11.  
  12. bucho_t *bucho_new();
  13. const char *bucho_show(const bucho_t *);
  14. void bucho_destroy(bucho_t *bucho);
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.  
  20. #endif /* BUCHO_H */
Add Comment
Please, Sign In to add comment