*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: strftime | Section: 3 | Source: Digital UNIX | File: strftime.3.gz
strftime(3) Library Functions Manual strftime(3) NAME strftime, wcsftime - Converts a date and time to a string or wide-char- acter string LIBRARY Standard C Library (libc.so, libc.a) SYNOPSIS #include <time.h> size_t strftime( char *s, size_t maxsize, const char *format, const struct tm *timeptr); #include <wchar.h> size_t wcsftime( wchar_t *wcs, size_t maxsize, const wchar_t *format, const struct tm *timeptr); For the wcsftime() function, the XPG4 standard specifies the format pa- rameter as type const char * rather than const wchar_t *, as specified by the latest version of the ISO C standard. Both type declarations are supported. STANDARDS Interfaces documented on this reference page conform to industry stan- dards as follows: strftime(), wcsftime(): ISO C, XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about in- dustry standards and associated tags. PARAMETERS Points to the array containing the output date and time string. Speci- fies the maximum number of bytes or wide characters to be written to the array pointed to by the s or wcs parameter. Points to a sequence of format codes that specify the format of the date and time to be written to the output string or wide-character string. See the DE- SCRIPTION section for more information. Points to a type tm structure that contains broken-down time information. Points to the wide-charac- ter array containing the output date and time string. DESCRIPTION The strftime() function places characters into the array pointed to by the s parameter as controlled by the string pointed to by the format parameter. The string pointed to by the format parameter is a sequence of characters. Depending on the locale setting, the characters may be single-byte or multibyte characters. Local time zone information is used as though the strftime() function called the tzset() function. Time information used in this subroutine is fetched from space containing type tm structure data, which is de- fined in the time.h include file. The type tm structure must contain the time information used by this subroutine to construct the time and date string. The format string consists of characters that represent zero or more conversion specifications and ordinary characters that represent the date and time values and null string terminator. A conversion specifi- cation consists of a % (percent sign) character followed by a character that determines how the conversion specification constructs the format- ted string. All ordinary characters (including the terminating null character) are copied unchanged into the s array. When copying between objects that overlap, behavior of this function is undefined. No more than the num- ber of bytes specified by the maxsize parameter are written to the ar- ray (including the terminating null byte). Each conversion specifica- tion is replaced by the appropriate characters as described in the fol- lowing list. The appropriate characters are determined by the LC_TIME category of the current locale and by values specified by the type tm structure pointed to by the timeptr parameter. The wcsftime() function formats the data in the timeptr parameter ac- cording to the specification contained in the format parameter and places the resulting wide-character string into the wcs parameter. No more than the number of wide characters specified by the maxsize para- meter are written to the array (including the terminating null wide character). The wcsftime() function behaves as if the character string generated by the strftime() function is passed to the mbstowcs() function as the character-string parameter and the mbstowcs function places the result in the wcs parameter of the wcsftime() function, up to the limit of wide-character codes specified by the maxsize parameter. Only the wchar.h include file needs to be specified for the wcsftime() function. These functions use the local timezone information. The format parameter consists of a series of zero or more conversion specifiers and ordinary characters. Each conversion specification starts with a % (percent sign) and ends with a conversion-code charac- ter that specifies the conversion format. The strftime() function and the version of the wcsftime() function that conforms to XPG4 replace the conversion specification with the appropriately formatted date or time value. Ordinary characters are written to the output buffer un- changed. [ISO C] For wcsftime(), each conversion specification starts with a % (percent sign) and ends with a conversion-code wide character that specifies the conversion format. The function replaces the conversion specification with the appropriately formatted date or time value. Or- dinary wide characters in the format are written to the output buffer unchanged. The format parameter has the following syntax: [ordinary-text] [%[[-|0]width] [.precision] format-code \ [ordinary- text]]... Text that is copied to the output parameter with no changes. [Digi- tal] A decimal digit string that specifies the minimum field width. If the width of the item equals or exceeds the minimum field width, the minimum is ignored. If the width of the item is less than the minimum field width, the function justifies and pads the item. The optional - (minus sign) or 0 (zero digit) control the justification and padding as follows: Item is right justified and spaces are added to the beginning of the item to fill the minimum width. Item is left justified and spaces are added to the end of the item to fill the minimum width. Item is right justified and zeros are added to the beginning of the item to fill the minimum width. [Digital] A decimal string that spec- ifies the minimum number of digits to appear for the d, H, I, j, m, M, o, S, U, w, W, y, and Y conversion formats and the maximum number of characters to used from the a, A, b, B, c, D, E, h, n, N, p, r, t, T, x, X, Z, and % conversion formats. If no field width or precision is specified for the d, H, I, m, M, S, U, W, or y conversion character, a default precision of .2 is used. If no field width or precision is specified for the j conversion character, a default precision of 3 is used. A sin- gle character that specifies the date and time conversion to perform. The following list describes the conversion code char- acters: The short day of the week is output as a string as de- fined for the current locale (Mon, for example). The long day of the week is output as defined for the current locale (Monday, for example). The short month is output as a string as defined for the current locale (Jan, for example). The long month is output as a string as defined for the current locale (January, for example). The date and time is output with the default date and time as defined for the current locale. The century is out- put as a decimal number in the range 00 to 99. The day of the month is output as a number between 01 and 31. The format is fixed to return %m/%d/%y. (For example, 20 Jun 1990 will return 06/20/90.) The day of the month is output as a number between 1 and 31 in a 2-digit field with leading space fill. Specifies the locale's alternative appropriate date and time representa- tion. Specifies the name of the base year (period) in the lo- cale's alternative representation. Specifies the locale's al- ternative date representation. Specifies the locale's alterna- tive time representation. Specifies the offset from %EC (year only) in the locale's alternative representation. Specifies the full alternative year representation. The hour of the day is output as a number between 00 and 23. Same as b. The hour of the day is output as a number between 01 and 12. The Julian day of the year is output as a number between 001 and 366. The month of the year is output as a number between 01 and 12. The minute is output as a number between 00 and 59. Only a newline character is output. The locale-dependent Emperor/Era name is output. The locale-dependent Emperor/Era year is output. Spec- ifies the day of the month using the locale's alternative nu- meric symbols. Specifies the day of the month using the lo- cale's alternative numeric symbols. Specifies the hour (24-hour clock) using the locale's alternative numeric symbols. Speci- fies the hour (12-hour clock) using the locale's alternative nu- meric symbols. Specifies the month using the locale's alterna- tive numeric symbols. Specifies the minutes using the locale's alternative numeric symbols. Specifies the seconds using the locale's alternative numeric symbols. Specifies the weekday as a number in the locale's alternative representation (Monday=1). Specifies the week number of the year (Sunday as the first day of the week) using the locale's alternative numeric symbols. Specifies the week number of the year (Monday as the first day of the week, rules corresponding to %V), using the locale's al- ternative numeric symbols. Specifies the week day as a number in the locale's alternative representation (Sunday = 0). Speci- fies the week number of the year (Monday as the first day of the week) using the locale's alternative numeric symbols. Specifies the year (offset from %C) in alternative representation. The AM or PM indicator is output as a string specified for the current locale. The time in AM/PM notation is output, according to British/US conventions (%I:%M:%S [AM|PM]). The time in hours (24-hour clock) and minutes (%H:%M). The second is output as a number between 00 and 61. Only a tab character is output. The time is output as %H:%M:%S. Specifies the weekday as a decimal number [1,7], with 1 representing Monday. The week number of the year (Sunday as the first day of the week). Output format is a decimal number between 0 and 53. The week number of the year (Monday as the first day of the week). Output format is a deci- mal number between 1 and 53. If the week containing January 1 has four or more days in the new year, then it is considered week 1; otherwise, it is week 53 or the previous year, and the next week is week 1. The day of the week is output as a number between 0 (Sunday) and 6. The week number of the year (Monday as the first day of the week). Output format is a decimal number between 0 and 53. The short date is output in the format speci- fied for the current locale. The time is output in the format specified for the current locale. The year is output as a num- ber (without the century) between 00 and 99. The year is output as a number (with the century) between 0000 and 9999. The (standard time or daylight saving time) time zone name or abbre- viation is output as a string from the environment variable TZ (CDT, for example). If no time zone information exists, no characters are output. The % (percent) character is output. When a conversion-code character or conversion-code wide character is not from the preceding list, the behavior of these functions is unde- fined. EXAMPLES The following example uses strftime() to display the current date: #include <time.h> #include <locale.h> #include <stdio.h> #define SLENGTH 80 main() { char nowstr[SLENGTH]; time_t nowbin; const struct tm *nowstruct; (void)setlocale(LC_ALL, ""); if (time(&nowbin) == (time_t) - 1) printf("Could not get time of day from time()\n"); nowstruct = localtime(&nowbin); if (strftime(nowstr, SLENGTH, "%A %x", nowstruct) == (size_t) 0) printf("Could not get string from strftime()\n"); printf("Today's date is %s\n", nowstr); } NOTES The %S seconds field can contain a value up to 61 seconds rather than up to 59 seconds to allow leap seconds that are sometimes added to years to keep clocks in correspondence with the solar year. RETURN VALUES The strftime() function returns the number of bytes written into the array pointed to by the s parameter when the total number of resulting bytes, including the terminating null byte, is not more than the value of the maxsize parameter. The returned value does not count the termi- nating null byte in the number of bytes written into the array. Other- wise, a value of 0 cast to size_t is returned and the contents of the array are undefined. The wcsftime() function returns the number of wide characters written into the array pointed to by the wcs parameter when the total number of resulting wide characters, including the terminating null wide charac- ter, is not more than the value of the maxsize parameter. The returned value does not count the terminating null wide character in the number of wide characters written into the array. Otherwise, a value of 0 cast to size_t is returned and the contents of the array are undefined. RELATED INFORMATION Functions: ctime(3), mbstowcs(3), setlocale(3), strptime(3) Standards: standards(5) delim off strftime(3)

Navigation Options