Lines Matching refs:text

26 	char text[256];
30 strftime(text, sizeof(text), nl_langinfo(D_T_FMT), local_t);
31 printf("STRING IS: %s\n\n", text);
35 result = strftime(text, sizeof(text), "%a", local_t);
36 printf("a Bytes %i %s ", result, text);
44 result = strftime(text, sizeof(text), "%A", local_t);
45 printf("A Bytes %i %s ", result, text);
53 result = strftime(text, sizeof(text), "%b", local_t);
54 printf("b Bytes %i %s ", result, text);
62 result = strftime(text, sizeof(text), "%B", local_t);
63 printf("B Bytes %i %s ", result, text);
73 * result = strftime(text, sizeof(text), "%c", local_t);
74 * printf("c Bytes %i %s ", result, text);
82 result = strftime(text, sizeof(text), "%C", local_t);
83 printf("C Bytes %i %s ", result, text);
91 result = strftime(text, sizeof(text), "%d", local_t);
92 printf("d Bytes %i %s ", result, text);
102 * result = strftime(text, sizeof(text), "%D", local_t);
103 * printf("D Bytes %i %s ", result, text);
112 result = strftime(text, sizeof(text), "%e", local_t);
113 printf("e Bytes %i %s ", result, text);
121 result = strftime(text, sizeof(text), "%F", local_t);
122 printf("F Bytes %i %s ", result, text);
130 result = strftime(text, sizeof(text), "%H", local_t);
131 printf("H Bytes %i %s ", result, text);
141 * result = strftime(text, sizeof(text), "%g", local_t);
142 * printf("g Bytes %i %s ", result, text);
151 result = strftime(text, sizeof(text), "%G", local_t);
152 printf("G Bytes %i %s ", result, text);
160 result = strftime(text, sizeof(text), "%h", local_t);
161 printf("h Bytes %i %s ", result, text);
169 result = strftime(text, sizeof(text), "%I", local_t);
170 printf("I Bytes %i %s ", result, text);
178 result = strftime(text, sizeof(text), "%j", local_t);
179 printf("j Bytes %i %s ", result, text);
187 result = strftime(text, sizeof(text), "%m", local_t);
188 printf("m Bytes %i %s ", result, text);
196 result = strftime(text, sizeof(text), "%M", local_t);
197 printf("M Bytes %i %s ", result, text);
205 result = strftime(text, sizeof(text), "%n", local_t);
206 printf("n Bytes %i %s ", result, text);
214 result = strftime(text, sizeof(text), "%p", local_t);
215 printf("p Bytes %i %s ", result, text);
223 result = strftime(text, sizeof(text), "%r", local_t);
224 printf("r Bytes %i %s ", result, text);
232 result = strftime(text, sizeof(text), "%R", local_t);
233 printf("R Bytes %i %s ", result, text);
241 result = strftime(text, sizeof(text), "%S", local_t);
242 printf("S Bytes %i %s ", result, text);
250 result = strftime(text, sizeof(text), "%t", local_t);
251 printf("t Bytes %i %s ", result, text);
259 result = strftime(text, sizeof(text), "%T", local_t);
260 printf("T Bytes %i %s ", result, text);
268 result = strftime(text, sizeof(text), "%u", local_t);
269 printf("u Bytes %i %s ", result, text);
277 result = strftime(text, sizeof(text), "%U", local_t);
278 printf("U Bytes %i %s ", result, text);
286 result = strftime(text, sizeof(text), "%V", local_t);
287 printf("V Bytes %i %s ", result, text);
295 result = strftime(text, sizeof(text), "%w", local_t);
296 printf("w Bytes %i %s ", result, text);
304 result = strftime(text, sizeof(text), "%W", local_t);
305 printf("W Bytes %i %s ", result, text);
315 * result = strftime(text, sizeof(text), "%x", local_t);
316 * printf("x Bytes %i %s ", result, text);
325 result = strftime(text, sizeof(text), "%X", local_t);
326 printf("X Bytes %i %s ", result, text);
336 * result = strftime(text, sizeof(text), "%y", local_t);
337 * printf("y Bytes %i %s ", result, text);
346 result = strftime(text, sizeof(text), "%Y", local_t);
347 printf("Y Bytes %i %s ", result, text);
355 result = strftime(text, sizeof(text), "%z", local_t);
356 printf("z Bytes %i %s ", result, text);
364 //result = strftime(text, sizeof(text), "%Z", local_t);
365 //printf("Z Bytes %i %s ", result, text);