posix.html 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
  4. <title>POSIX Compatible C API's</title>
  5. <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
  6. <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
  7. <link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
  8. <link rel="up" href="../ref.html" title="Reference">
  9. <link rel="prev" href="non_std_strings/mfc_strings/mfc_iter.html" title="Iterating Over the Matches Within An MFC String">
  10. <link rel="next" href="concepts.html" title="Concepts">
  11. </head>
  12. <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
  13. <table cellpadding="2" width="100%"><tr>
  14. <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
  15. <td align="center"><a href="../../../../../../index.html">Home</a></td>
  16. <td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td>
  17. <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
  18. <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
  19. <td align="center"><a href="../../../../../../more/index.htm">More</a></td>
  20. </tr></table>
  21. <hr>
  22. <div class="spirit-nav">
  23. <a accesskey="p" href="non_std_strings/mfc_strings/mfc_iter.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ref.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="concepts.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
  24. </div>
  25. <div class="section">
  26. <div class="titlepage"><div><div><h3 class="title">
  27. <a name="boost_regex.ref.posix"></a><a class="link" href="posix.html" title="POSIX Compatible C API's">POSIX Compatible C API's</a>
  28. </h3></div></div></div>
  29. <div class="note"><table border="0" summary="Note">
  30. <tr>
  31. <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../doc/src/images/note.png"></td>
  32. <th align="left">Note</th>
  33. </tr>
  34. <tr><td align="left" valign="top"><p>
  35. this is an abridged reference to the POSIX API functions, these are provided
  36. for compatibility with other libraries, rather than as an API to be used
  37. in new code (unless you need access from a language other than C++). This
  38. version of these functions should also happily coexist with other versions,
  39. as the names used are macros that expand to the actual function names.
  40. </p></td></tr>
  41. </table></div>
  42. <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">cregex</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
  43. </pre>
  44. <p>
  45. or:
  46. </p>
  47. <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">regex</span><span class="special">.</span><span class="identifier">h</span><span class="special">&gt;</span>
  48. </pre>
  49. <p>
  50. The following functions are available for users who need a POSIX compatible
  51. C library, they are available in both Unicode and narrow character versions,
  52. the standard POSIX API names are macros that expand to one version or the
  53. other depending upon whether UNICODE is defined or not.
  54. </p>
  55. <div class="important"><table border="0" summary="Important">
  56. <tr>
  57. <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../../doc/src/images/important.png"></td>
  58. <th align="left">Important</th>
  59. </tr>
  60. <tr><td align="left" valign="top"><p>
  61. Note that all the symbols defined here are enclosed inside namespace <code class="computeroutput"><span class="identifier">boost</span></code> when used in C++ programs, unless
  62. you use <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">regex</span><span class="special">.</span><span class="identifier">h</span><span class="special">&gt;</span></code>
  63. instead - in which case the symbols are still defined in namespace boost,
  64. but are made available in the global namespace as well.
  65. </p></td></tr>
  66. </table></div>
  67. <p>
  68. The functions are defined as:
  69. </p>
  70. <pre class="programlisting"><span class="keyword">extern</span> <span class="string">"C"</span> <span class="special">{</span>
  71. <span class="keyword">struct</span> <span class="identifier">regex_tA</span><span class="special">;</span>
  72. <span class="keyword">struct</span> <span class="identifier">regex_tW</span><span class="special">;</span>
  73. <span class="keyword">int</span> <span class="identifier">regcompA</span><span class="special">(</span><span class="identifier">regex_tA</span><span class="special">*,</span> <span class="keyword">const</span> <span class="keyword">char</span><span class="special">*,</span> <span class="keyword">int</span><span class="special">);</span>
  74. <span class="keyword">unsigned</span> <span class="keyword">int</span> <span class="identifier">regerrorA</span><span class="special">(</span><span class="keyword">int</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">regex_tA</span><span class="special">*,</span> <span class="keyword">char</span><span class="special">*,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">);</span>
  75. <span class="keyword">int</span> <span class="identifier">regexecA</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">regex_tA</span><span class="special">*,</span> <span class="keyword">const</span> <span class="keyword">char</span><span class="special">*,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="identifier">regmatch_t</span><span class="special">*,</span> <span class="keyword">int</span><span class="special">);</span>
  76. <span class="keyword">void</span> <span class="identifier">regfreeA</span><span class="special">(</span><span class="identifier">regex_tA</span><span class="special">*);</span>
  77. <span class="keyword">int</span> <span class="identifier">regcompW</span><span class="special">(</span><span class="identifier">regex_tW</span><span class="special">*,</span> <span class="keyword">const</span> <span class="keyword">wchar_t</span><span class="special">*,</span> <span class="keyword">int</span><span class="special">);</span>
  78. <span class="keyword">unsigned</span> <span class="keyword">int</span> <span class="identifier">regerrorW</span><span class="special">(</span><span class="keyword">int</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">regex_tW</span><span class="special">*,</span> <span class="keyword">wchar_t</span><span class="special">*,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">);</span>
  79. <span class="keyword">int</span> <span class="identifier">regexecW</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">regex_tW</span><span class="special">*,</span> <span class="keyword">const</span> <span class="keyword">wchar_t</span><span class="special">*,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="identifier">regmatch_t</span><span class="special">*,</span> <span class="keyword">int</span><span class="special">);</span>
  80. <span class="keyword">void</span> <span class="identifier">regfreeW</span><span class="special">(</span><span class="identifier">regex_tW</span><span class="special">*);</span>
  81. <span class="preprocessor">#ifdef</span> <span class="identifier">UNICODE</span>
  82. <span class="preprocessor">#define</span> <span class="identifier">regcomp</span> <span class="identifier">regcompW</span>
  83. <span class="preprocessor">#define</span> <span class="identifier">regerror</span> <span class="identifier">regerrorW</span>
  84. <span class="preprocessor">#define</span> <span class="identifier">regexec</span> <span class="identifier">regexecW</span>
  85. <span class="preprocessor">#define</span> <span class="identifier">regfree</span> <span class="identifier">regfreeW</span>
  86. <span class="preprocessor">#define</span> <span class="identifier">regex_t</span> <span class="identifier">regex_tW</span>
  87. <span class="preprocessor">#else</span>
  88. <span class="preprocessor">#define</span> <span class="identifier">regcomp</span> <span class="identifier">regcompA</span>
  89. <span class="preprocessor">#define</span> <span class="identifier">regerror</span> <span class="identifier">regerrorA</span>
  90. <span class="preprocessor">#define</span> <span class="identifier">regexec</span> <span class="identifier">regexecA</span>
  91. <span class="preprocessor">#define</span> <span class="identifier">regfree</span> <span class="identifier">regfreeA</span>
  92. <span class="preprocessor">#define</span> <span class="identifier">regex_t</span> <span class="identifier">regex_tA</span>
  93. <span class="preprocessor">#endif</span>
  94. <span class="special">}</span>
  95. </pre>
  96. <p>
  97. All the functions operate on structure regex_t, which exposes two public
  98. members:
  99. </p>
  100. <div class="informaltable"><table class="table">
  101. <colgroup>
  102. <col>
  103. <col>
  104. </colgroup>
  105. <thead><tr>
  106. <th>
  107. <p>
  108. Member
  109. </p>
  110. </th>
  111. <th>
  112. <p>
  113. Meaning
  114. </p>
  115. </th>
  116. </tr></thead>
  117. <tbody>
  118. <tr>
  119. <td>
  120. <p>
  121. <code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span>
  122. <span class="identifier">re_nsub</span></code>
  123. </p>
  124. </td>
  125. <td>
  126. <p>
  127. This is filled in by <code class="computeroutput"><span class="identifier">regcomp</span></code>
  128. and indicates the number of sub-expressions contained in the regular
  129. expression.
  130. </p>
  131. </td>
  132. </tr>
  133. <tr>
  134. <td>
  135. <p>
  136. <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">TCHAR</span><span class="special">*</span> <span class="identifier">re_endp</span></code>
  137. </p>
  138. </td>
  139. <td>
  140. <p>
  141. Points to the end of the expression to compile when the flag REG_PEND
  142. is set.
  143. </p>
  144. </td>
  145. </tr>
  146. </tbody>
  147. </table></div>
  148. <div class="note"><table border="0" summary="Note">
  149. <tr>
  150. <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../doc/src/images/note.png"></td>
  151. <th align="left">Note</th>
  152. </tr>
  153. <tr><td align="left" valign="top"><p>
  154. <code class="computeroutput"><span class="identifier">regex_t</span></code> is actually a
  155. <code class="computeroutput"><span class="preprocessor">#define</span></code> - it is either
  156. <code class="computeroutput"><span class="identifier">regex_tA</span></code> or <code class="computeroutput"><span class="identifier">regex_tW</span></code> depending upon whether <code class="computeroutput"><span class="identifier">UNICODE</span></code> is defined or not, <code class="computeroutput"><span class="identifier">TCHAR</span></code> is either <code class="computeroutput"><span class="keyword">char</span></code>
  157. or <code class="computeroutput"><span class="keyword">wchar_t</span></code> again depending
  158. upon the macro <code class="computeroutput"><span class="identifier">UNICODE</span></code>.
  159. </p></td></tr>
  160. </table></div>
  161. <a name="regcomp"></a><h5>
  162. <a name="boost_regex.ref.posix.h0"></a>
  163. <span class="phrase"><a name="boost_regex.ref.posix.regcomp"></a></span><a class="link" href="posix.html#boost_regex.ref.posix.regcomp">regcomp</a>
  164. </h5>
  165. <p>
  166. <code class="computeroutput"><span class="identifier">regcomp</span></code> takes a pointer to
  167. a <code class="computeroutput"><span class="identifier">regex_t</span></code>, a pointer to the
  168. expression to compile and a flags parameter which can be a combination of:
  169. </p>
  170. <div class="informaltable"><table class="table">
  171. <colgroup>
  172. <col>
  173. <col>
  174. </colgroup>
  175. <thead><tr>
  176. <th>
  177. <p>
  178. Flag
  179. </p>
  180. </th>
  181. <th>
  182. <p>
  183. Meaning
  184. </p>
  185. </th>
  186. </tr></thead>
  187. <tbody>
  188. <tr>
  189. <td>
  190. <p>
  191. REG_EXTENDED
  192. </p>
  193. </td>
  194. <td>
  195. <p>
  196. Compiles modern regular expressions. Equivalent to <code class="computeroutput"><span class="identifier">regbase</span><span class="special">::</span><span class="identifier">char_classes</span> <span class="special">|</span>
  197. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">intervals</span> <span class="special">|</span>
  198. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">bk_refs</span></code>.
  199. </p>
  200. </td>
  201. </tr>
  202. <tr>
  203. <td>
  204. <p>
  205. REG_BASIC
  206. </p>
  207. </td>
  208. <td>
  209. <p>
  210. Compiles basic (obsolete) regular expression syntax. Equivalent
  211. to <code class="computeroutput"><span class="identifier">regbase</span><span class="special">::</span><span class="identifier">char_classes</span> <span class="special">|</span>
  212. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">intervals</span> <span class="special">|</span>
  213. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">limited_ops</span> <span class="special">|</span>
  214. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">bk_braces</span> <span class="special">|</span>
  215. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">bk_parens</span> <span class="special">|</span>
  216. <span class="identifier">regbase</span><span class="special">::</span><span class="identifier">bk_refs</span></code>.
  217. </p>
  218. </td>
  219. </tr>
  220. <tr>
  221. <td>
  222. <p>
  223. REG_NOSPEC
  224. </p>
  225. </td>
  226. <td>
  227. <p>
  228. All characters are ordinary, the expression is a literal string.
  229. </p>
  230. </td>
  231. </tr>
  232. <tr>
  233. <td>
  234. <p>
  235. REG_ICASE
  236. </p>
  237. </td>
  238. <td>
  239. <p>
  240. Compiles for matching that ignores character case.
  241. </p>
  242. </td>
  243. </tr>
  244. <tr>
  245. <td>
  246. <p>
  247. REG_NOSUB
  248. </p>
  249. </td>
  250. <td>
  251. <p>
  252. Has no effect in this library.
  253. </p>
  254. </td>
  255. </tr>
  256. <tr>
  257. <td>
  258. <p>
  259. REG_NEWLINE
  260. </p>
  261. </td>
  262. <td>
  263. <p>
  264. When this flag is set a dot does not match the newline character.
  265. </p>
  266. </td>
  267. </tr>
  268. <tr>
  269. <td>
  270. <p>
  271. REG_PEND
  272. </p>
  273. </td>
  274. <td>
  275. <p>
  276. When this flag is set the re_endp parameter of the regex_t structure
  277. must point to the end of the regular expression to compile.
  278. </p>
  279. </td>
  280. </tr>
  281. <tr>
  282. <td>
  283. <p>
  284. REG_NOCOLLATE
  285. </p>
  286. </td>
  287. <td>
  288. <p>
  289. When this flag is set then locale dependent collation for character
  290. ranges is turned off.
  291. </p>
  292. </td>
  293. </tr>
  294. <tr>
  295. <td>
  296. <p>
  297. REG_ESCAPE_IN_LISTS
  298. </p>
  299. </td>
  300. <td>
  301. <p>
  302. When this flag is set, then escape sequences are permitted in bracket
  303. expressions (character sets).
  304. </p>
  305. </td>
  306. </tr>
  307. <tr>
  308. <td>
  309. <p>
  310. REG_NEWLINE_ALT
  311. </p>
  312. </td>
  313. <td>
  314. <p>
  315. When this flag is set then the newline character is equivalent
  316. to the alternation operator |.
  317. </p>
  318. </td>
  319. </tr>
  320. <tr>
  321. <td>
  322. <p>
  323. REG_PERL
  324. </p>
  325. </td>
  326. <td>
  327. <p>
  328. Compiles Perl like regular expressions.
  329. </p>
  330. </td>
  331. </tr>
  332. <tr>
  333. <td>
  334. <p>
  335. REG_AWK
  336. </p>
  337. </td>
  338. <td>
  339. <p>
  340. A shortcut for awk-like behavior: <code class="computeroutput"><span class="identifier">REG_EXTENDED</span>
  341. <span class="special">|</span> <span class="identifier">REG_ESCAPE_IN_LISTS</span></code>
  342. </p>
  343. </td>
  344. </tr>
  345. <tr>
  346. <td>
  347. <p>
  348. REG_GREP
  349. </p>
  350. </td>
  351. <td>
  352. <p>
  353. A shortcut for grep like behavior: <code class="computeroutput"><span class="identifier">REG_BASIC</span>
  354. <span class="special">|</span> <span class="identifier">REG_NEWLINE_ALT</span></code>
  355. </p>
  356. </td>
  357. </tr>
  358. <tr>
  359. <td>
  360. <p>
  361. REG_EGREP
  362. </p>
  363. </td>
  364. <td>
  365. <p>
  366. A shortcut for egrep like behavior: <code class="computeroutput"><span class="identifier">REG_EXTENDED</span>
  367. <span class="special">|</span> <span class="identifier">REG_NEWLINE_ALT</span></code>
  368. </p>
  369. </td>
  370. </tr>
  371. </tbody>
  372. </table></div>
  373. <a name="regerror"></a><h5>
  374. <a name="boost_regex.ref.posix.h1"></a>
  375. <span class="phrase"><a name="boost_regex.ref.posix.regerror"></a></span><a class="link" href="posix.html#boost_regex.ref.posix.regerror">regerror</a>
  376. </h5>
  377. <p>
  378. regerror takes the following parameters, it maps an error code to a human
  379. readable string:
  380. </p>
  381. <div class="informaltable"><table class="table">
  382. <colgroup>
  383. <col>
  384. <col>
  385. </colgroup>
  386. <thead><tr>
  387. <th>
  388. <p>
  389. Parameter
  390. </p>
  391. </th>
  392. <th>
  393. <p>
  394. Meaning
  395. </p>
  396. </th>
  397. </tr></thead>
  398. <tbody>
  399. <tr>
  400. <td>
  401. <p>
  402. int code
  403. </p>
  404. </td>
  405. <td>
  406. <p>
  407. The error code.
  408. </p>
  409. </td>
  410. </tr>
  411. <tr>
  412. <td>
  413. <p>
  414. const regex_t* e
  415. </p>
  416. </td>
  417. <td>
  418. <p>
  419. The regular expression (can be null).
  420. </p>
  421. </td>
  422. </tr>
  423. <tr>
  424. <td>
  425. <p>
  426. char* buf
  427. </p>
  428. </td>
  429. <td>
  430. <p>
  431. The buffer to fill in with the error message.
  432. </p>
  433. </td>
  434. </tr>
  435. <tr>
  436. <td>
  437. <p>
  438. unsigned int buf_size
  439. </p>
  440. </td>
  441. <td>
  442. <p>
  443. The length of buf.
  444. </p>
  445. </td>
  446. </tr>
  447. </tbody>
  448. </table></div>
  449. <p>
  450. If the error code is OR'ed with REG_ITOA then the message that results is
  451. the printable name of the code rather than a message, for example "REG_BADPAT".
  452. If the code is REG_ATIO then e must not be null and e-&gt;re_pend must point
  453. to the printable name of an error code, the return value is then the value
  454. of the error code. For any other value of code, the return value is the number
  455. of characters in the error message, if the return value is greater than or
  456. equal to buf_size then regerror will have to be called again with a larger
  457. buffer.
  458. </p>
  459. <a name="regexec"></a><h5>
  460. <a name="boost_regex.ref.posix.h2"></a>
  461. <span class="phrase"><a name="boost_regex.ref.posix.regexec"></a></span><a class="link" href="posix.html#boost_regex.ref.posix.regexec">regexec</a>
  462. </h5>
  463. <p>
  464. regexec finds the first occurrence of expression e within string buf. If
  465. len is non-zero then <span class="emphasis"><em>*m</em></span> is filled in with what matched
  466. the regular expression, m[0] contains what matched the whole string, m[1]
  467. the first sub-expression etc, see regmatch_t in the header file declaration
  468. for more details. The eflags parameter can be a combination of:
  469. </p>
  470. <div class="informaltable"><table class="table">
  471. <colgroup>
  472. <col>
  473. <col>
  474. </colgroup>
  475. <thead><tr>
  476. <th>
  477. <p>
  478. Flag
  479. </p>
  480. </th>
  481. <th>
  482. <p>
  483. Meaning
  484. </p>
  485. </th>
  486. </tr></thead>
  487. <tbody>
  488. <tr>
  489. <td>
  490. <p>
  491. REG_NOTBOL
  492. </p>
  493. </td>
  494. <td>
  495. <p>
  496. Parameter buf does not represent the start of a line.
  497. </p>
  498. </td>
  499. </tr>
  500. <tr>
  501. <td>
  502. <p>
  503. REG_NOTEOL
  504. </p>
  505. </td>
  506. <td>
  507. <p>
  508. Parameter buf does not terminate at the end of a line.
  509. </p>
  510. </td>
  511. </tr>
  512. <tr>
  513. <td>
  514. <p>
  515. REG_STARTEND
  516. </p>
  517. </td>
  518. <td>
  519. <p>
  520. The string searched starts at buf + pmatch[0].rm_so and ends at
  521. buf + pmatch[0].rm_eo.
  522. </p>
  523. </td>
  524. </tr>
  525. </tbody>
  526. </table></div>
  527. <a name="regfree"></a><h5>
  528. <a name="boost_regex.ref.posix.h3"></a>
  529. <span class="phrase"><a name="boost_regex.ref.posix.regfree"></a></span><a class="link" href="posix.html#boost_regex.ref.posix.regfree">regfree</a>
  530. </h5>
  531. <p>
  532. <code class="computeroutput"><span class="identifier">regfree</span></code> frees all the memory
  533. that was allocated by regcomp.
  534. </p>
  535. </div>
  536. <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
  537. <td align="left"></td>
  538. <td align="right"><div class="copyright-footer">Copyright &#169; 1998-2013 John Maddock<p>
  539. Distributed under the Boost Software License, Version 1.0. (See accompanying
  540. file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
  541. </p>
  542. </div></td>
  543. </tr></table>
  544. <hr>
  545. <div class="spirit-nav">
  546. <a accesskey="p" href="non_std_strings/mfc_strings/mfc_iter.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ref.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="concepts.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
  547. </div>
  548. </body>
  549. </html>