Английская Википедия:C string handling

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Other uses Шаблон:Short description Шаблон:Use dmy dates Шаблон:C Standard Library

The C programming language has a set of functions implementing operations on strings (character strings and byte strings) in its standard library. Various operations, such as copying, concatenation, tokenization and searching are supported. For character strings, the standard library uses the convention that strings are null-terminated: a string of Шаблон:Mvar characters is represented as an array of Шаблон:Math elements, the last of which is a "Шаблон:Tt character" with numeric value 0.

The only support for strings in the programming language proper is that the compiler translates quoted string constants into null-terminated strings.

Definitions

A string is defined as a contiguous sequence of code units terminated by the first zero code unit (often called the NUL code unit).[1] This means a string cannot contain the zero code unit, as the first one seen marks the end of the string. The length of a string is the number of code units before the zero code unit.[1] The memory occupied by a string is always one more code unit than the length, as space is needed to store the zero terminator.

Generally, the term string means a string where the code unit is of type char, which is exactly 8 bits on all modern machines. C90 defines wide strings[1] which use a code unit of type wchar_t, which is 16 or 32 bits on modern machines. This was intended for Unicode but it is increasingly common to use UTF-8 in normal strings for Unicode instead.

Strings are passed to functions by passing a pointer to the first code unit. Since char* and wchar_t* are different types, the functions that process wide strings are different than the ones processing normal strings and have different names.

String literals ("text" in the C source code) are converted to arrays during compilation.[2] The result is an array of code units containing all the characters plus a trailing zero code unit. In C90 L"text" produces a wide string. A string literal can contain the zero code unit (one way is to put \0 into the source), but this will cause the string to end at that point. The rest of the literal will be placed in memory (with another zero code unit added to the end) but it is impossible to know those code units were translated from the string literal, therefore such source code is not a string literal.[3]

Character encodings

Each string ends at the first occurrence of the zero code unit of the appropriate kind (char or wchar_t). Consequently, a byte string (Шаблон:Code) can contain non-NUL characters in ASCII or any ASCII extension, but not characters in encodings such as UTF-16 (even though a 16-bit code unit might be nonzero, its high or low byte might be zero). The encodings that can be stored in wide strings are defined by the width of wchar_t. In most implementations, wchar_t is at least 16 bits, and so all 16-bit encodings, such as UCS-2, can be stored. If wchar_t is 32-bits, then 32-bit encodings, such as UTF-32, can be stored. (The standard requires a "type that holds any wide character", which on Windows no longer holds true since the UCS-2 to UTF-16 shift. This was recognized as a defect in the standard and fixed in C++.)[4] C++11 and C11 add two types with explicit widths Шаблон:Code and Шаблон:Code.[5]

Variable-width encodings can be used in both byte strings and wide strings. String length and offsets are measured in bytes or wchar_t, not in "characters", which can be confusing to beginning programmers. UTF-8 and Shift JIS are often used in C byte strings, while UTF-16 is often used in C wide strings when wchar_t is 16 bits. Truncating strings with variable-width characters using functions like strncpy can produce invalid sequences at the end of the string. This can be unsafe if the truncated parts are interpreted by code that assumes the input is valid.

Support for Unicode literals such as Шаблон:Code (UTF-8) or Шаблон:Code (UTF-16 or UTF-32, depends on Шаблон:Code) is implementation defined,[6] and may require that the source code be in the same encoding, especially for Шаблон:Code where compilers might just copy whatever is between the quotes. Some compilers or editors will require entering all non-ASCII characters as \xNN sequences for each byte of UTF-8, and/or \uNNNN for each word of UTF-16. Since C11 (and C++11), a new literal prefix Шаблон:Code is available that guarantees UTF-8 for a bytestring literal, as in Шаблон:Code.[7] Since C++20 and C23, a char8_t type was added that is meant to store UTF-8 characters and the types of u8 prefixed character and string literals were changed to char8_t and char8_t[] respectively.

Features

Terminology

In historical documentation the term "character" was often used instead of "byte" for C strings, which leads manyШаблон:Who to believe that these functions somehow do not work for UTF-8. In fact all lengths are defined as being in bytes and this is true in all implementations, and these functions work as well with UTF-8 as with single-byte encodings. The BSD documentation has been fixed to make this clear, but POSIX, Linux, and Windows documentation still uses "character" in many places where "byte" or "wchar_t" is the correct term.

Functions for handling memory buffers can process sequences of bytes that include null-byte as part of the data. Names of these functions typically start with mem, as opposite to the str prefix.

Headers

Most of the functions that operate on C strings are declared in the string.h header (cstring in C++), while functions that operate on C wide strings are declared in the wchar.h header (cwchar in C++). These headers also contain declarations of functions used for handling memory buffers; the name is thus something of a misnomer.

Functions declared in string.h are extremely popular since, as a part of the C standard library, they are guaranteed to work on any platform which supports C. However, some security issues exist with these functions, such as potential buffer overflows when not used carefully and properly, causing the programmers to prefer safer and possibly less portable variants, out of which some popular ones are listed below. Some of these functions also violate const-correctness by accepting a const string pointer and returning a non-const pointer within the string. To correct this, some have been separated into two overloaded functions in the C++ version of the standard library.

Constants and types

Name Notes
Шаблон:Mono Macro expanding to the null pointer constant; that is, a constant representing a pointer value which is guaranteed not to be a valid address of an object in memory.
Шаблон:AnchorШаблон:Mono Type used for a code unit in "wide" strings. On Windows, the only platform to use Шаблон:Mono extensively, it's defined as 16-bit[8] which was enough to represent any Unicode (UCS-2) character, but is now only enough to represent a UTF-16 code unit, which can be half a code point. On other platforms it is defined as 32-bit and a Unicode code point always fits. The C standard only requires that Шаблон:Mono be wide enough to hold the widest character set among the supported system locales[9] and be greater or equal in size to Шаблон:Mono,[10]
Шаблон:AnchorШаблон:Mono Integer type that can hold any value of a wchar_t as well as the value of the macro WEOF. This type is unchanged by integral promotions. Usually a 32 bit signed value.
Шаблон:AnchorШаблон:Mono[11] Part of the C standard since C23, in Шаблон:Mono, a type that is suitable for storing UTF-8 characters.[12]
Шаблон:AnchorШаблон:Mono[13] Part of the C standard since C11,[14] in Шаблон:Mono, a type capable of holding 16 bits even if Шаблон:Mono is another size. If the macro __STDC_UTF_16__ is defined as 1, the type is used for UTF-16 on that system. This is always the case in C23.[15] C++ does not define such a macro, but the type is always used for UTF-16 in that language.[16]
Шаблон:AnchorШаблон:Mono[13] Part of the C standard since C11,[17] in Шаблон:Mono, a type capable of holding 32 bits even if Шаблон:Mono is another size. If the macro __STDC_UTF_32__ is defined as 1, the type is used for UTF-32 on that system. This is always the case in C23. [15] C++ does not define such a macro, but the type is always used for UTF-32 in that language.[16]
Шаблон:AnchorШаблон:Mono Contains all the information about the conversion state required from one call to a function to the other.

Functions

Byte
string
Wide
string
Description[note 1]
String
manipulation
Шаблон:AnchorШаблон:Mono[18] Шаблон:AnchorШаблон:Mono[19] Copies one string to another
Шаблон:AnchorШаблон:Mono[20] Шаблон:AnchorШаблон:Mono[21] Writes exactly Шаблон:Mvar bytes, copying from source or adding nulls
Шаблон:AnchorШаблон:Mono[22] Шаблон:AnchorШаблон:Mono[23] Appends one string to another
Шаблон:AnchorШаблон:Mono[24] Шаблон:AnchorШаблон:Mono[25] Appends no more than Шаблон:Mvar bytes from one string to another
Шаблон:AnchorШаблон:Mono[26] Шаблон:AnchorШаблон:Mono[27] Transforms a string according to the current locale
String
examination
Шаблон:AnchorШаблон:Mono[28] Шаблон:AnchorШаблон:Mono[29] Returns the length of the string
Шаблон:AnchorШаблон:Mono[30] Шаблон:AnchorШаблон:Mono[31] Compares two strings (three-way comparison)
Шаблон:AnchorШаблон:Mono[32] Шаблон:AnchorШаблон:Mono[33] Compares a specific number of bytes in two strings
Шаблон:AnchorШаблон:Mono[34] Шаблон:AnchorШаблон:Mono[35] Compares two strings according to the current locale
Шаблон:AnchorШаблон:Mono[36] Шаблон:AnchorШаблон:Mono[37] Finds the first occurrence of a byte in a string
Шаблон:AnchorШаблон:Mono[38] Шаблон:AnchorШаблон:Mono[39] Finds the last occurrence of a byte in a string
Шаблон:AnchorШаблон:Mono[40] Шаблон:AnchorШаблон:Mono[41] Returns the number of initial bytes in a string that are in a second string
Шаблон:AnchorШаблон:Mono[42] Шаблон:AnchorШаблон:Mono[43] Returns the number of initial bytes in a string that are not in a second string
Шаблон:AnchorШаблон:Mono[44] Шаблон:AnchorШаблон:Mono[45] Finds in a string the first occurrence of a byte in a set
Шаблон:AnchorШаблон:Mono[46] Шаблон:AnchorШаблон:Mono[47] Finds the first occurrence of a substring in a string
Шаблон:AnchorШаблон:Mono[48] Шаблон:AnchorШаблон:Mono[49] Splits a string into tokens
Miscellaneous Шаблон:AnchorШаблон:Mono[50] Шаблон:N/a Returns a string containing a message derived from an error code
Memory
manipulation
Шаблон:AnchorШаблон:Mono[51] Шаблон:AnchorШаблон:Mono[52] Fills a buffer with a repeated byte. Since C23, Шаблон:Mono was added to erase sensitive data.
Шаблон:AnchorШаблон:Mono[53] Шаблон:AnchorШаблон:Mono[54] Copies one buffer to another. Since C23, Шаблон:Mono was added to efficiently concatenate strings.
Шаблон:AnchorШаблон:Mono[55] Шаблон:AnchorШаблон:Mono[56] Copies one buffer to another, possibly overlapping, buffer
Шаблон:AnchorШаблон:Mono[57] Шаблон:AnchorШаблон:Mono[58] Compares two buffers (three-way comparison)
Шаблон:AnchorШаблон:Mono[59] Шаблон:AnchorШаблон:Mono[60] Finds the first occurrence of a byte in a buffer
  1. For wide string functions substitute Шаблон:Mono for "byte" in the description

Multibyte functions

Name Description
Шаблон:AnchorШаблон:Mono[61] Returns the number of bytes in the next multibyte character
Шаблон:AnchorШаблон:Mono[62] Converts the next multibyte character to a wide character
Шаблон:AnchorШаблон:Mono[63] Converts a wide character to its multibyte representation
Шаблон:AnchorШаблон:Mono[64] Converts a multibyte string to a wide string
Шаблон:AnchorШаблон:Mono[65] Converts a wide string to a multibyte string
Шаблон:AnchorШаблон:Mono[66] Converts a single-byte character to wide character, if possible
Шаблон:AnchorШаблон:Mono[67] Converts a wide character to a single-byte character, if possible
Шаблон:AnchorШаблон:Mono[68] Checks if a state object represents initial state
Шаблон:AnchorШаблон:Mono[69] Returns the number of bytes in the next multibyte character, given state
Шаблон:AnchorШаблон:Mono[70] Converts the next multibyte character to a wide character, given state
Шаблон:AnchorШаблон:Mono[71] Converts a wide character to its multibyte representation, given state
Шаблон:AnchorШаблон:Mono[72] Converts a multibyte string to a wide string, given state
Шаблон:AnchorШаблон:Mono[73] Converts a wide string to a multibyte string, given state
Шаблон:AnchorШаблон:Mono[74] Converts the next multibyte character to a UTF-8 character, given state
Шаблон:AnchorШаблон:Mono[75] Converts a single code point from UTF-8 to a narrow multibyte character representation, given state
Шаблон:AnchorШаблон:Mono[76] Converts the next multibyte character to a UTF-16 character, given state
Шаблон:AnchorШаблон:Mono[77] Converts a single code point from UTF-16 to a narrow multibyte character representation, given state
Шаблон:AnchorШаблон:Mono[78] Converts the next multibyte character to a UTF-32 character, given state
Шаблон:AnchorШаблон:Mono[79] Converts a single code point from UTF-32 to a narrow multibyte character representation, given state

These functions all need a Шаблон:Samp object, originally in static memory (making the functions not be thread-safe) and in later additions the caller must maintain. This was originally intended to track shift states in the Шаблон:Samp encodings, but modern ones such as UTF-8 do not need this. However these functions were designed on the assumption that the Шаблон:Samp encoding is not a variable-width encoding and thus are designed to deal with exactly one Шаблон:Samp at a time, passing it by value rather than using a string pointer. As UTF-16 is a variable-width encoding, the Шаблон:Samp has been reused to keep track of surrogate pairs in the wide encoding, though the caller must still detect and call Шаблон:Samp twice for a single character.[80][81][82] Later additions to the standard admit that the only conversion programmers are interested in is between UTF-8 and UTF-16 and directly provide this.

Шаблон:AnchorNumeric conversions

Byte
string
Wide
string
Description[note 1]
Шаблон:AnchorШаблон:Mono[83] Шаблон:N/a converts a string to a floating-point value ('atof' means 'ASCII to float')
Шаблон:AnchorШаблон:Mono
Шаблон:Mono
Шаблон:Mono[84]
Шаблон:N/a converts a string to an integer (C99) ('atoi' means 'ASCII to integer')
Шаблон:AnchorШаблон:Mono (C99)[85]
Шаблон:Mono[86]
Шаблон:Mono (C99)[87]
Шаблон:AnchorШаблон:Mono (C99)[88]
Шаблон:Mono[89]
Шаблон:Mono (C99)[90]
converts a string to a floating-point value
Шаблон:AnchorШаблон:Mono
Шаблон:Mono[91]
Шаблон:AnchorШаблон:Mono
Шаблон:Mono[92]
converts a string to a signed integer
Шаблон:AnchorШаблон:Mono
Шаблон:Mono[93]
Шаблон:AnchorШаблон:Mono
Шаблон:Mono[94]
converts a string to an unsigned integer
  1. Here string refers either to byte string or wide string

The C standard library contains several functions for numeric conversions. The functions that deal with byte strings are defined in the Шаблон:Code header (Шаблон:Code header in C++). The functions that deal with wide strings are defined in the Шаблон:Code header (Шаблон:Code header in C++).

The functions Шаблон:Code, Шаблон:Code, Шаблон:Code, Шаблон:Code, Шаблон:Code, Шаблон:Code and their wide counterparts are not const-correct, since they accept a Шаблон:Code string pointer and return a non-Шаблон:Code pointer within the string. This has been fixed in C23.[95]

Also, since the Normative Amendment 1 (C95), Шаблон:Code functions are considered subsumed by Шаблон:Code functions, for which reason neither C95 nor any later standard provides wide-character versions of these functions. The argument against Шаблон:Code is that they do not differentiate between an error and a Шаблон:Code.[96]

Popular extensions

Name Platform Description
Шаблон:AnchorШаблон:Mono[97][98] POSIX, BSD Fills a buffer with zero bytes, deprecated by Шаблон:Mono
Шаблон:AnchorШаблон:Mono[99] SVID, POSIX Part of the C standard since C23, copies between two non-overlapping memory areas, stopping when a given byte is found.
Шаблон:AnchorШаблон:Mono[100] GNU a variant of [[#memcpy|Шаблон:Mono]] returning a pointer to the byte following the last written byte
Шаблон:AnchorШаблон:Mono[101] POSIX, BSD case-insensitive versions of Шаблон:Mono
Шаблон:AnchorШаблон:Mono[102] Windows a variant of [[#strcat|Шаблон:Mono]] that checks the destination buffer size before copying
Шаблон:AnchorШаблон:Mono[103] Windows a variant of [[#strcpy|Шаблон:Mono]] that checks the destination buffer size before copying
Шаблон:AnchorШаблон:Mono & Шаблон:Mono[104] POSIX Part of the C standard since C23, allocates and duplicates a string
Шаблон:AnchorШаблон:Mono[105] POSIX 1, GNU a variant of [[#strerror|Шаблон:Mono]] that is thread-safe. The GNU version is incompatible with the POSIX one.
Шаблон:AnchorШаблон:Mono[106] Windows case-insensitive versions of Шаблон:Mono
Шаблон:AnchorШаблон:Mono[107] BSD, Solaris a variant of [[#strcpy|Шаблон:Mono]] that truncates the result to fit in the destination buffer[108]
Шаблон:AnchorШаблон:Mono[107] BSD, Solaris a variant of [[#strcat|Шаблон:Mono]] that truncates the result to fit in the destination buffer[108]
Шаблон:AnchorШаблон:Mono[109] POSIX:2008 returns string representation of a signal code. Not thread safe.
Шаблон:AnchorШаблон:Mono[110] POSIX a variant of [[#strtok|Шаблон:Mono]] that is thread-safe

Replacements

Despite the well-established need to replace strcat[22] and strcpy[18] with functions that do not allow buffer overflows, no accepted standard has arisen. This is partly due to the mistaken belief by many C programmers that strncat and strncpy have the desired behavior; however, neither function was designed for this (they were intended to manipulate null-padded fixed-size string buffers, a data format less commonly used in modern software), and the behavior and arguments are non-intuitive and often written incorrectly even by expert programmers.[108]

The most popularШаблон:Efn replacement are the strlcat and strlcpy functions, which appeared in OpenBSD 2.4 in December, 1998.[108] These functions always write one NUL to the destination buffer, truncating the result if necessary, and return the size of buffer that would be needed, which allows detection of the truncation and provides a size for creating a new buffer that will not truncate. They have been criticized on the basis of allegedly being inefficient,[111] encouraging the use of C strings (instead of some superior alternative form of string),[112][113] and hiding other potential errors.[114][115] Consequently, for years, they have not been included in the GNU C library (used by software on Linux), although that did get changed. The glibc Wiki FAQ about strlc{py|at} inclusion notes that as of glibc 2.3.8, the code has been committed [116] and thereby added [117]. The glibc 2.38 availability announcement cited the functions "are expected to be added to a future POSIX version." (The Austin Group Defect Tracker, ID 986 tracked some discussion about such plans for POSIX.) Even while glibc hadn't added support, strlcat and strlcpy have been implemented in a number of other C libraries including ones for OpenBSD, FreeBSD, NetBSD, Solaris, OS X, and QNX, as well as in alternative C libraries for Linux, such as libbsd, introduced in 2008,[118] and musl, introduced in 2011.[119][120] The lack of GNU C library support had not stopped various software authors from using it and bundling a replacement, among other SDL, GLib, ffmpeg, rsync, and even internally in the Linux kernel. Open source implementations for these functions are available.[121][122]

Sometimes memcpy[53] or memmove[55] are used, as they may be more efficient than strcpy as they do not repeatedly check for NUL (this is less true on modern processors). Since they need a buffer length as a parameter, correct setting of this parameter can avoid buffer overflows.

As part of its 2004 Security Development Lifecycle, Microsoft introduced a family of "secure" functions including strcpy_s and strcat_s (along with many others).[123] These functions were standardized with some minor changes as part of the optional C11 (Annex K) proposed by ISO/IEC WDTR 24731. These functions perform various checks including whether the string is too long to fit in the buffer. If the checks fail, a user-specified "runtime-constraint handler" function is called,[124] which usually aborts the program.[125][126] Some functions perform destructive operations before calling the runtime-constraint handler; for example, strcat_s sets the destination to the empty string,[127] which can make it difficult to recover from error conditions or debug them. These functions attracted considerable criticism because initially they were implemented only on Windows and at the same time warning messages started to be produced by Microsoft Visual C++ suggesting use of these functions instead of standard ones. This has been speculated by some to be an attempt by Microsoft to lock developers into its platform.[128] Although open-source implementations of these functions are available, these functions are not present in common Unix C libraries.[129] Experience with these functions has shown significant problems with their adoption and errors in usage, so the removal of Annex K is proposed for the next revision of the C standard.[130] Usage of Шаблон:Code has also been suggested as a way to avoid unwanted compiler optimizations.[131][132]

See also

Notes

Шаблон:Notelist

References

Шаблон:Reflist

External links

Шаблон:Wikibooks

  • Fast memcpy in C, multiple C coding examples to target different types of CPU instruction architectures

Шаблон:CProLang

  1. 1,0 1,1 1,2 Шаблон:Cite web
  2. Шаблон:Cite web
  3. Шаблон:Cite web
  4. Шаблон:Cite web
  5. Шаблон:Cite web
  6. Шаблон:Cite web
  7. Шаблон:Cite web
  8. Шаблон:Cite web
  9. Шаблон:Cite web
  10. Шаблон:Cite book
  11. Шаблон:Cite web
  12. Шаблон:Cite web
  13. 13,0 13,1 Шаблон:Cite web
  14. Шаблон:Cite web
  15. 15,0 15,1 Шаблон:Cite web
  16. 16,0 16,1 Шаблон:Cite web
  17. Шаблон:Cite web
  18. 18,0 18,1 Шаблон:Cite web
  19. Шаблон:Cite web
  20. Шаблон:Cite web
  21. Шаблон:Cite web
  22. 22,0 22,1 Шаблон:Cite web
  23. Шаблон:Cite web
  24. Шаблон:Cite web
  25. Шаблон:Cite web
  26. Шаблон:Cite web
  27. Шаблон:Cite web
  28. Шаблон:Cite web
  29. Шаблон:Cite web
  30. Шаблон:Cite web
  31. Шаблон:Cite web
  32. Шаблон:Cite web
  33. Шаблон:Cite web
  34. Шаблон:Cite web
  35. Шаблон:Cite web
  36. Шаблон:Cite web
  37. Шаблон:Cite web
  38. Шаблон:Cite web
  39. Шаблон:Cite web
  40. Шаблон:Cite web
  41. Шаблон:Cite web
  42. Шаблон:Cite web
  43. Шаблон:Cite web
  44. Шаблон:Cite web
  45. Шаблон:Cite web
  46. Шаблон:Cite web
  47. Шаблон:Cite web
  48. Шаблон:Cite web
  49. Шаблон:Cite web
  50. Шаблон:Cite web
  51. Шаблон:Cite web
  52. Шаблон:Cite web
  53. 53,0 53,1 Шаблон:Cite web
  54. Шаблон:Cite web
  55. 55,0 55,1 Шаблон:Cite web
  56. Шаблон:Cite web
  57. Шаблон:Cite web
  58. Шаблон:Cite web
  59. Шаблон:Cite web
  60. Шаблон:Cite web
  61. Шаблон:Cite web
  62. Шаблон:Cite web
  63. Шаблон:Cite web
  64. Шаблон:Cite web
  65. Шаблон:Cite web
  66. Шаблон:Cite web
  67. Шаблон:Cite web
  68. Шаблон:Cite web
  69. Шаблон:Cite web
  70. Шаблон:Cite web
  71. Шаблон:Cite web
  72. Шаблон:Cite web
  73. Шаблон:Cite web
  74. Шаблон:Cite web
  75. Шаблон:Cite web
  76. Шаблон:Cite web
  77. Шаблон:Cite web
  78. Шаблон:Cite web
  79. Шаблон:Cite web
  80. Шаблон:Cite web
  81. Шаблон:Cite web
  82. Шаблон:Cite web
  83. Шаблон:Cite web
  84. Шаблон:Cite web
  85. Шаблон:Cite web
  86. Шаблон:Cite web
  87. Шаблон:Cite web
  88. Шаблон:Cite web
  89. Шаблон:Cite web
  90. Шаблон:Cite web
  91. Шаблон:Cite web
  92. Шаблон:Cite web
  93. Шаблон:Cite web
  94. Шаблон:Cite web
  95. Шаблон:Cite web
  96. C99 Rationale, 7.20.1.1
  97. Шаблон:Cite web
  98. Шаблон:Cite web
  99. Шаблон:Cite web
  100. Шаблон:Cite web
  101. Шаблон:Cite web
  102. Шаблон:Cite web
  103. Шаблон:Cite web
  104. Шаблон:Cite web
  105. Шаблон:Cite web
  106. Шаблон:Cite web
  107. 107,0 107,1 Шаблон:Cite web
  108. 108,0 108,1 108,2 108,3 Шаблон:Cite web
  109. Шаблон:Cite web
  110. Шаблон:Cite web
  111. Шаблон:Cite web
  112. libc-alpha mailing list Шаблон:Webarchive, selected messages from 8 August 2000 thread: 53, 60, 61
  113. The ups and downs of strlcpy(); LWN.net
  114. Шаблон:Cite web
  115. Шаблон:Man "However, one may question the validity of such optimizations, as they defeat the whole purpose of strlcpy() and strlcat(). As a matter of fact, the first version of this manual page got it wrong."
  116. strlc{py|at} commit
  117. [1]
  118. Шаблон:Cite web
  119. Шаблон:Cite web
  120. Шаблон:Cite web
  121. Шаблон:Cite web
  122. Шаблон:Cite web
  123. Шаблон:Cite web
  124. Шаблон:Cite web
  125. Шаблон:Cite web
  126. Шаблон:Cite web
  127. Шаблон:Cite web
  128. Шаблон:Cite web
  129. Шаблон:Cite web
  130. Шаблон:Cite web
  131. Шаблон:Cite web
  132. Шаблон:Man