summaryrefslogtreecommitdiff
path: root/devdocs/c/locale%2Flocaleconv.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/c/locale%2Flocaleconv.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/c/locale%2Flocaleconv.html')
-rw-r--r--devdocs/c/locale%2Flocaleconv.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/devdocs/c/locale%2Flocaleconv.html b/devdocs/c/locale%2Flocaleconv.html
deleted file mode 100644
index d4222e7df..000000000
--- a/devdocs/c/locale%2Flocaleconv.html
+++ /dev/null
@@ -1,33 +0,0 @@
- <h1 id="firstHeading" class="firstHeading">localeconv</h1> <table class="t-dcl-begin"> <tr class="t-dsc-header"> <th> Defined in header <code>&lt;locale.h&gt;</code> </th> <th> </th> <th> </th> </tr> <tr class="t-dcl"> <td class="t-dcl-nopad"> <pre data-language="c">struct lconv *localeconv(void);</pre>
-</td> <td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> </table> <p>The <code>localeconv</code> function obtains a pointer to a static object of type <code><a href="lconv" title="c/locale/lconv">lconv</a></code>, which represents numeric and monetary formatting rules of the current C locale.</p>
-<h3 id="Parameters"> Parameters</h3> <p>(none)</p>
-<h3 id="Return_value"> Return value</h3> <p>pointer to the current <code><a href="lconv" title="c/locale/lconv">lconv</a></code> object.</p>
-<h3 id="Notes"> Notes</h3> <p>Modifying the object references through the returned pointer is undefined behavior.</p>
-<p><code>localeconv</code> modifies a static object, calling it from different threads without synchronization is undefined behavior.</p>
-<h3 id="Example"> Example</h3> <div class="t-example"> <div class="c source-c"><pre data-language="c">#include &lt;stdio.h&gt;
-#include &lt;locale.h&gt;
-
-int main(void)
-{
- setlocale(LC_MONETARY, "en_IN.utf8");
- struct lconv *lc = localeconv();
- printf("Local Currency Symbol : %s\n", lc-&gt;currency_symbol);
- printf("International Currency Symbol: %s\n", lc-&gt;int_curr_symbol);
-}</pre></div> <p>Output:</p>
-<div class="text source-text"><pre data-language="c">Local Currency Symbol : ₹
-International Currency Symbol: INR</pre></div> </div> <h3 id="References"> References</h3> <ul>
-<li> C11 standard (ISO/IEC 9899:2011): </li>
-<ul><li> 7.11.2.1 The localeconv function (p: 225-230) </li></ul>
-<li> C99 standard (ISO/IEC 9899:1999): </li>
-<ul><li> 7.11.2.1 The localeconv function (p: 206-211) </li></ul>
-<li> C89/C90 standard (ISO/IEC 9899:1990): </li>
-<ul><li> 4.4.2.1 The localeconv function </li></ul>
-</ul> <h3 id="See_also"> See also</h3> <table class="t-dsc-begin"> <tr class="t-dsc"> <td> <div><a href="setlocale" title="c/locale/setlocale"> <span class="t-lines"><span>setlocale</span></span></a></div> </td> <td> gets and sets the current C locale <br> <span class="t-mark">(function)</span> </td>
-</tr> <tr class="t-dsc"> <td> <div><a href="lconv" title="c/locale/lconv"> <span class="t-lines"><span>lconv</span></span></a></div> </td> <td> formatting details, returned by <code>localeconv</code> <br><span class="t-mark">(struct)</span> </td>
-</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/locale/localeconv" title="cpp/locale/localeconv">C++ documentation</a></span> for <code>localeconv</code> </td>
-</tr> </table> <div class="_attribution">
- <p class="_attribution-p">
- &copy; cppreference.com<br>Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.<br>
- <a href="https://en.cppreference.com/w/c/locale/localeconv" class="_attribution-link">https://en.cppreference.com/w/c/locale/localeconv</a>
- </p>
-</div>