helpline.h 415 B

12345678910111213141516
  1. #ifndef _PERF_UI_HELPLINE_H_
  2. #define _PERF_UI_HELPLINE_H_ 1
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5. void ui_helpline__init(void);
  6. void ui_helpline__pop(void);
  7. void ui_helpline__push(const char *msg);
  8. void ui_helpline__vpush(const char *fmt, va_list ap);
  9. void ui_helpline__fpush(const char *fmt, ...);
  10. void ui_helpline__puts(const char *msg);
  11. extern char ui_helpline__current[];
  12. #endif /* _PERF_UI_HELPLINE_H_ */