gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:update_gv (0.00 seconds)
t2ex
t2ex_source/t2ex/datetime/src/strftime.c - 13.2KB - 368 lines
149:                 else if (c == 'V') { /* week number of the year [01,53] */
150:                         update_gv(gv, t);
151:                         k = gv[1];
153: else /*if (c == 'g')*/ { /* week-based year (2 digits) */ 154: update_gv(gv, t); 155: k = (gv[0] + 1900) % 100;
181: else /*if (c == 'G')*/ { /* week-based year (4 digits) */ 182: update_gv(gv, t); 183: k = gv[0] + 1900;