comparison th_string.h @ 330:b2c4b0b4d44f

Add initial support for ll and L printf modifiers.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 23 Feb 2016 12:55:09 +0200
parents 2c87abec62db
children cda5a2aebbb6
comparison
equal deleted inserted replaced
329:0fa9d39df928 330:b2c4b0b4d44f
48 }; 48 };
49 49
50 50
51 enum 51 enum
52 { 52 {
53 TH_PF_NONE = 0x00, 53 TH_PF_NONE = 0x0000,
54 TH_PF_ALT = 0x01, 54 TH_PF_ALT = 0x0001,
55 TH_PF_SIGN = 0x02, 55 TH_PF_SIGN = 0x0002,
56 TH_PF_SPACE = 0x04, 56 TH_PF_SPACE = 0x0004,
57 TH_PF_GROUP = 0x08, 57 TH_PF_GROUP = 0x0008,
58 58
59 TH_PF_ZERO = 0x10, 59 TH_PF_ZERO = 0x0100,
60 TH_PF_LEFT = 0x20, 60 TH_PF_LEFT = 0x0200,
61
62 TH_PF_LONG = 0x1000,
63 TH_PF_LONGLONG = 0x2000,
61 }; 64 };
62 65
63 66
64 typedef struct 67 typedef struct
65 { 68 {