X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=format_check.h;h=2f974ba9caed8875a9bebf02490555b17bd07816;hb=5522ac4ffef4c482928eeb359f13759ded77cdc4;hp=c0e603cd22761c579857ef6c17a2c7501e2b3c7d;hpb=fd16b92f058181088a385c3224c8814831c006d3;p=cparser diff --git a/format_check.h b/format_check.h index c0e603c..2f974ba 100644 --- a/format_check.h +++ b/format_check.h @@ -22,6 +22,12 @@ #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);