Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

153 lines
7.1KB

  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>strtoll (The Red Hat newlib C Library)</title>
  7. <meta name="description" content="strtoll (The Red Hat newlib C Library)">
  8. <meta name="keywords" content="strtoll (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="Stdlib.html#Stdlib" rel="up" title="Stdlib">
  16. <link href="strtoul.html#strtoul" rel="next" title="strtoul">
  17. <link href="strtol.html#strtol" rel="prev" title="strtol">
  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="strtoll"></a>
  48. <div class="header">
  49. <p>
  50. Next: <a href="strtoul.html#strtoul" accesskey="n" rel="next">strtoul</a>, Previous: <a href="strtol.html#strtol" accesskey="p" rel="prev">strtol</a>, Up: <a href="Stdlib.html#Stdlib" accesskey="u" rel="up">Stdlib</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="strtoll_002c-strtoll_005fl_002d_002d_002dstring-to-long-long"></a>
  54. <h3 class="section">2.39 <code>strtoll</code>, <code>strtoll_l</code>&mdash;string to long long</h3>
  55. <a name="index-strtoll"></a>
  56. <a name="index-strtoll_005fl"></a>
  57. <a name="index-_005fstrtoll_005fr"></a>
  58. <p><strong>Synopsis</strong>
  59. </p><div class="example">
  60. <pre class="example">#include &lt;stdlib.h&gt;
  61. long long strtoll(const char *restrict <var>s</var>, char **restrict <var>ptr</var>,
  62. int <var>base</var>);
  63. #include &lt;stdlib.h&gt;
  64. long long strtoll_l(const char *restrict <var>s</var>,
  65. char **restrict <var>ptr</var>, int <var>base</var>,
  66. locale_t <var>locale</var>);
  67. long long _strtoll_r(void *<var>reent</var>,
  68. const char *restrict <var>s</var>,
  69. char **restrict <var>ptr</var>, int <var>base</var>);
  70. </pre></div>
  71. <p><strong>Description</strong><br>
  72. The function <code>strtoll</code> converts the string <code>*<var>s</var></code> to
  73. a <code>long long</code>. First, it breaks down the string into three parts:
  74. leading whitespace, which is ignored; a subject string consisting
  75. of characters resembling an integer in the radix specified by <var>base</var>;
  76. and a trailing portion consisting of zero or more unparseable characters,
  77. and always including the terminating null character. Then, it attempts
  78. to convert the subject string into a <code>long long</code> and returns the
  79. result.
  80. </p>
  81. <p>If the value of <var>base</var> is 0, the subject string is expected to look
  82. like a normal C integer constant: an optional sign, a possible &lsquo;<code>0x</code>&rsquo;
  83. indicating a hexadecimal base, and a number. If <var>base</var> is between
  84. 2 and 36, the expected form of the subject is a sequence of letters
  85. and digits representing an integer in the radix specified by <var>base</var>,
  86. with an optional plus or minus sign. The letters <code>a</code>&ndash;<code>z</code> (or,
  87. equivalently, <code>A</code>&ndash;<code>Z</code>) are used to signify values from 10 to 35;
  88. only letters whose ascribed values are less than <var>base</var> are
  89. permitted. If <var>base</var> is 16, a leading <code>0x</code> is permitted.
  90. </p>
  91. <p>The subject sequence is the longest initial sequence of the input
  92. string that has the expected form, starting with the first
  93. non-whitespace character. If the string is empty or consists entirely
  94. of whitespace, or if the first non-whitespace character is not a
  95. permissible letter or digit, the subject string is empty.
  96. </p>
  97. <p>If the subject string is acceptable, and the value of <var>base</var> is zero,
  98. <code>strtoll</code> attempts to determine the radix from the input string. A
  99. string with a leading <code>0x</code> is treated as a hexadecimal value; a string with
  100. a leading 0 and no <code>x</code> is treated as octal; all other strings are
  101. treated as decimal. If <var>base</var> is between 2 and 36, it is used as the
  102. conversion radix, as described above. If the subject string begins with
  103. a minus sign, the value is negated. Finally, a pointer to the first
  104. character past the converted subject string is stored in <var>ptr</var>, if
  105. <var>ptr</var> is not <code>NULL</code>.
  106. </p>
  107. <p>If the subject string is empty (or not in acceptable form), no conversion
  108. is performed and the value of <var>s</var> is stored in <var>ptr</var> (if <var>ptr</var> is
  109. not <code>NULL</code>).
  110. </p>
  111. <p><code>strtoll_l</code> is like <code>strtoll</code> but performs the conversion based on the
  112. locale specified by the locale object locale. If <var>locale</var> is
  113. LC_GLOBAL_LOCALE or not a valid locale object, the behaviour is undefined.
  114. </p>
  115. <p>The alternate function <code>_strtoll_r</code> is a reentrant version. The
  116. extra argument <var>reent</var> is a pointer to a reentrancy structure.
  117. </p>
  118. <br>
  119. <p><strong>Returns</strong><br>
  120. <code>strtoll</code>, <code>strtoll_l</code> return the converted value, if any. If no
  121. conversion was made, 0 is returned.
  122. </p>
  123. <p><code>strtoll</code>, <code>strtoll_l</code> return <code>LONG_LONG_MAX</code> or <code>LONG_LONG_MIN</code>
  124. if the magnitude of the converted value is too large, and sets <code>errno</code>
  125. to <code>ERANGE</code>.
  126. </p>
  127. <br>
  128. <p><strong>Portability</strong><br>
  129. <code>strtoll</code> is ANSI.
  130. <code>strtoll_l</code> is a GNU extension.
  131. </p>
  132. <p>No supporting OS subroutines are required.
  133. </p>
  134. <br>
  135. <hr>
  136. <div class="header">
  137. <p>
  138. Next: <a href="strtoul.html#strtoul" accesskey="n" rel="next">strtoul</a>, Previous: <a href="strtol.html#strtol" accesskey="p" rel="prev">strtol</a>, Up: <a href="Stdlib.html#Stdlib" accesskey="u" rel="up">Stdlib</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>
  139. </div>
  140. </body>
  141. </html>