ui.h 229 B

1234567891011121314151617
  1. #ifndef ui_H_INCLUDED
  2. #define ui_H_INCLUDED
  3. typedef struct UI_ UI;
  4. UI * ui_alloc(void);
  5. void vva_list_scan (va_list args , char * format , va_list data );
  6. void va_list_scan (va_list args , char * format , ... );
  7. #endif