您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <title>tolower (The Red Hat newlib C Library)</title>
  7. <meta name="description" content="tolower (The Red Hat newlib C Library)">
  8. <meta name="keywords" content="tolower (The Red Hat newlib C Library)">
  9. <meta name="resource-type" content="document">
  10. <meta name="distribution" content="global">
  11. <meta name="Generator" content="makeinfo">
  12. <link href="index.html#Top" rel="start" title="Top">
  13. <link href="Document-Index.html#Document-Index" rel="index" title="Document Index">
  14. <link href="Document-Index.html#SEC_Contents" rel="contents" title="Table of Contents">
  15. <link href="Ctype.html#Ctype" rel="up" title="Ctype">
  16. <link href="toupper.html#toupper" rel="next" title="toupper">
  17. <link href="toascii.html#toascii" rel="prev" title="toascii">
  18. <style type="text/css">
  19. <!--
  20. a.summary-letter {text-decoration: none}
  21. blockquote.indentedblock {margin-right: 0em}
  22. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  23. blockquote.smallquotation {font-size: smaller}
  24. div.display {margin-left: 3.2em}
  25. div.example {margin-left: 3.2em}
  26. div.lisp {margin-left: 3.2em}
  27. div.smalldisplay {margin-left: 3.2em}
  28. div.smallexample {margin-left: 3.2em}
  29. div.smalllisp {margin-left: 3.2em}
  30. kbd {font-style: oblique}
  31. pre.display {font-family: inherit}
  32. pre.format {font-family: inherit}
  33. pre.menu-comment {font-family: serif}
  34. pre.menu-preformatted {font-family: serif}
  35. pre.smalldisplay {font-family: inherit; font-size: smaller}
  36. pre.smallexample {font-size: smaller}
  37. pre.smallformat {font-family: inherit; font-size: smaller}
  38. pre.smalllisp {font-size: smaller}
  39. span.nolinebreak {white-space: nowrap}
  40. span.roman {font-family: initial; font-weight: normal}
  41. span.sansserif {font-family: sans-serif; font-weight: normal}
  42. ul.no-bullet {list-style: none}
  43. -->
  44. </style>
  45. </head>
  46. <body lang="en">
  47. <a name="tolower"></a>
  48. <div class="header">
  49. <p>
  50. Next: <a href="toupper.html#toupper" accesskey="n" rel="next">toupper</a>, Previous: <a href="toascii.html#toascii" accesskey="p" rel="prev">toascii</a>, Up: <a href="Ctype.html#Ctype" accesskey="u" rel="up">Ctype</a> &nbsp; [<a href="Document-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Document-Index.html#Document-Index" title="Index" rel="index">Index</a>]</p>
  51. </div>
  52. <hr>
  53. <a name="tolower_002c-tolower_005fl_002d_002d_002dtranslate-characters-to-lowercase"></a>
  54. <h3 class="section">3.14 <code>tolower</code>, <code>tolower_l</code>&mdash;translate characters to lowercase</h3>
  55. <a name="index-tolower"></a>
  56. <a name="index-tolower_005fl"></a>
  57. <a name="index-_005ftolower"></a>
  58. <p><strong>Synopsis</strong>
  59. </p><div class="example">
  60. <pre class="example">#include &lt;ctype.h&gt;
  61. int tolower(int <var>c</var>);
  62. int _tolower(int <var>c</var>);
  63. #include &lt;ctype.h&gt;
  64. int tolower_l(int <var>c</var>, locale_t <var>locale</var>);
  65. </pre></div>
  66. <p><strong>Description</strong><br>
  67. <code>tolower</code> is a macro which converts uppercase characters to lowercase,
  68. leaving all other characters unchanged. It is only defined when
  69. <var>c</var> is an integer in the range <code>EOF</code> to <code>255</code>.
  70. </p>
  71. <p><code>tolower_l</code> is like <code>tolower</code> but performs the function based on the
  72. locale specified by the locale object locale. If <var>locale</var> is
  73. LC_GLOBAL_LOCALE or not a valid locale object, the behaviour is undefined.
  74. </p>
  75. <p>You can use a compiled subroutine instead of the macro definition by
  76. undefining this macro using &lsquo;<code>#undef tolower</code>&rsquo; or &lsquo;<code>#undef tolower_l</code>&rsquo;.
  77. </p>
  78. <p><code>_tolower</code> performs the same conversion as <code>tolower</code>, but should
  79. only be used when <var>c</var> is known to be an uppercase character (<code>A</code>&ndash;<code>Z</code>).
  80. </p>
  81. <br>
  82. <p><strong>Returns</strong><br>
  83. <code>tolower</code>, <code>tolower_l</code> return the lowercase equivalent of <var>c</var> when
  84. <var>c</var> is an uppercase character, and <var>c</var> otherwise.
  85. </p>
  86. <p><code>_tolower</code> returns the lowercase equivalent of <var>c</var> when it is a
  87. character between <code>A</code> and <code>Z</code>. If <var>c</var> is not one of these
  88. characters, the behaviour of <code>_tolower</code> is undefined.
  89. </p>
  90. <br>
  91. <p><strong>Portability</strong><br>
  92. <code>tolower</code> is ANSI C. <code>_tolower</code> is not recommended for portable programs.
  93. <code>tolower_l</code> is POSIX-1.2008.
  94. </p>
  95. <p>No supporting OS subroutines are required.
  96. </p>
  97. <br>
  98. </body>
  99. </html>