add unsigned char type
[cparser] / format_check.h
index c0e603c..2f974ba 100644 (file)
 
 #include "ast.h"
 
+typedef enum {
+       FORMAT_PRINTF,   /**< printf style format */
+       FORMAT_SCANF,    /**< scanf style format */
+       FORMAT_STRFTIME, /**< strftime time format */
+       FORMAT_STRFMON   /**< strfmon monetary format */
+} format_kind_t;
 
 void check_format(const call_expression_t *call);