Lines Matching refs:format_string
39 - char *format_string;
40 + char format_string[128];
95 + strcpy(clock->format_string, "%a %b %d, ");
99 - clock->format_string = "%a %b %d, %I:%M %p";
100 + strcat(clock->format_string, "%I:%M %p");
104 - clock->format_string = "%a %b %d, %I:%M:%S %p";
105 + strcat(clock->format_string, "%I:%M:%S %p");
109 - clock->format_string = "%a %b %d, %H:%M";
110 + strcat(clock->format_string, "%H:%M");
114 - clock->format_string = "%a %b %d, %H:%M:%S";
115 + strcat(clock->format_string, "%H:%M:%S");