
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
        "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- MyFirstUnitAd -->
<ins class="adsbygoogle"
     style="display:inline-block;width:970px;height:250px"
     data-ad-client="ca-pub-5778386704669218"
     data-ad-slot="1503492166"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <link rel="stylesheet" type="text/css" href="../../../style.css" title="style" />
    <link rel="stylesheet" type="text/css" href="../style.css" title="style" />
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />

    <title>setlocale.3p - Linux manual page</title>
</head>

<body>

<div class="page-top"><a id="top_of_page"></a></div>
<!--%%%TOP_BAR%%%-->
    <div class="nav-bar">
        <table class="nav-table">
            <tr>
                <td class="nav-cell">
                    <p class="nav-text">
                        <a href="http://man7.org/index.html">man7.org</a> &gt; Linux &gt; <a href="../index.html">man-pages</a>
                    </p>
                </td>
                <td class="training-cell">
                    <p class="training-text"><a class="training-link" href="http://man7.org/training/">Linux/UNIX system programming training</a></p>
                </td>
            </tr>
        </table>
    </div>

<hr class="nav-end" />

<!--%%%PAGE_START%%%-->


<table class="sec-table">
<tr>
    <td>
        <p class="section-dir">
<a href="setlocale.3p.html#PROLOG">PROLOG</a> | <a href="setlocale.3p.html#NAME">NAME</a> | <a href="setlocale.3p.html#SYNOPSIS">SYNOPSIS</a> | <a href="setlocale.3p.html#DESCRIPTION">DESCRIPTION</a> | <a href="setlocale.3p.html#RETURN_VALUE">RETURN&nbsp;VALUE</a> | <a href="setlocale.3p.html#ERRORS">ERRORS</a> | <a href="setlocale.3p.html#EXAMPLES">EXAMPLES</a> | <a href="setlocale.3p.html#APPLICATION_USAGE">APPLICATION&nbsp;USAGE</a> | <a href="setlocale.3p.html#RATIONALE">RATIONALE</a> | <a href="setlocale.3p.html#FUTURE_DIRECTIONS">FUTURE&nbsp;DIRECTIONS</a> | <a href="setlocale.3p.html#SEE_ALSO">SEE&nbsp;ALSO</a> | <a href="setlocale.3p.html#COPYRIGHT">COPYRIGHT</a>
        </p>
    </td>
    <td class="search-box">
        <div class="man-search-box">

            <form method="get" action="http://www.google.com/search">
                <fieldset class="man-search">
                    <input type="text" name="q" size="10" maxlength="255" value="" />
                    <input type="hidden" name="sitesearch" value="man7.org/linux/man-pages" />
                    <input type="submit" name="sa" value="Search online pages" />
                </fieldset>
            </form>

        </div>
    </td>
    <td> </td>
</tr>
</table>

<pre>
<span class="headline">SETLOCALE(3P)             POSIX Programmer's Manual            SETLOCALE(3P)</span>
</pre>
<h2><a id="PROLOG" href="setlocale.3p.html#PROLOG"></a>PROLOG  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       This manual page is part of the POSIX Programmer's Manual.  The Linux
       implementation of this interface may differ (consult the
       corresponding Linux manual page for details of Linux behavior), or
       the interface may not be implemented on Linux.
</pre>
<h2><a id="NAME" href="setlocale.3p.html#NAME"></a>NAME  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       setlocale — set program locale
</pre>
<h2><a id="SYNOPSIS" href="setlocale.3p.html#SYNOPSIS"></a>SYNOPSIS  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       #include &lt;locale.h&gt;

       char *setlocale(int <i>category</i>, const char *<i>locale</i>);
</pre>
<h2><a id="DESCRIPTION" href="setlocale.3p.html#DESCRIPTION"></a>DESCRIPTION  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       The functionality described on this reference page is aligned with
       the ISO C standard. Any conflict between the requirements described
       here and the ISO C standard is unintentional. This volume of
       POSIX.1‐2008 defers to the ISO C standard.

       The <i>setlocale</i>() function selects the appropriate piece of the global
       locale, as specified by the <i>category</i> and <i>locale</i> arguments, and can be
       used to change or query the entire global locale or portions thereof.
       The value LC_ALL for <i>category</i> names the entire global locale; other
       values for <i>category</i> name only a part of the global locale:

       LC_COLLATE  Affects the behavior of regular expressions and the
                   collation functions.

       LC_CTYPE    Affects the behavior of regular expressions, character
                   classification, character conversion functions, and wide-
                   character functions.

       LC_MESSAGES Affects the affirmative and negative response expressions
                   returned by <i>nl_langinfo</i>() and the way message catalogs
                   are located. It may also affect the behavior of functions
                   that return or write message strings.

       LC_MONETARY Affects the behavior of functions that handle monetary
                   values.

       LC_NUMERIC  Affects the behavior of functions that handle numeric
                   values.

       LC_TIME     Affects the behavior of the time conversion functions.

       The <i>locale</i> argument is a pointer to a character string containing the
       required setting of <i>category</i>.  The contents of this string are
       implementation-defined. In addition, the following preset values of
       <i>locale</i> are defined for all settings of <i>category</i>:

       "POSIX"     Specifies the minimal environment for C-language
                   translation called the POSIX locale. The POSIX locale is
                   the default global locale at entry to <i>main</i>().

       "C"         Equivalent to <b>"POSIX"</b>.

       ""          Specifies an implementation-defined native environment.
                   The determination of the name of the new locale for the
                   specified category depends on the value of the associated
                   environment variables, <i>LC_*</i> and <i>LANG</i>; see the Base
                   Definitions volume of POSIX.1‐2008, <i>Chapter 7</i>, <i>Locale</i> and
                   <i>Chapter 8</i>, <i>Environment Variables</i>.

       A null pointer
                   Directs <i>setlocale</i>() to query the current global locale
                   setting and return the name of the locale if <i>category</i> is
                   not LC_ALL, or a string which encodes the locale name(s)
                   for all of the individual categories if <i>category</i> is
                   LC_ALL.

       Setting all of the categories of the global locale is similar to
       successively setting each individual category of the global locale,
       except that all error checking is done before any actions are
       performed. To set all the categories of the global locale,
       <i>setlocale</i>() can be invoked as:

           <b>setlocale(LC_ALL, "");</b>

       In this case, <i>setlocale</i>() shall first verify that the values of all
       the environment variables it needs according to the precedence rules
       (described in the Base Definitions volume of POSIX.1‐2008, <i>Chapter 8</i>,
       <i>Environment Variables</i>) indicate supported locales. If the value of
       any of these environment variable searches yields a locale that is
       not supported (and non-null), <i>setlocale</i>() shall return a null pointer
       and the global locale shall not be changed. If all environment
       variables name supported locales, <i>setlocale</i>() shall proceed as if it
       had been called for each category, using the appropriate value from
       the associated environment variable or from the implementation-
       defined default if there is no such value.

       The global locale established using <i>setlocale</i>() shall only be used in
       threads for which no current locale has been set using <i>uselocale</i>() or
       whose current locale has been set to the global locale using
       <i>uselocale</i>(LC_GLOBAL_LOCALE)<i>.</i>

       The implementation shall behave as if no function defined in this
       volume of POSIX.1‐2008 calls <i>setlocale</i>().
</pre>
<h2><a id="RETURN_VALUE" href="setlocale.3p.html#RETURN_VALUE"></a>RETURN VALUE  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       Upon successful completion, <i>setlocale</i>() shall return the string
       associated with the specified category for the new locale. Otherwise,
       <i>setlocale</i>() shall return a null pointer and the global locale shall
       not be changed.

       A null pointer for <i>locale</i> shall cause <i>setlocale</i>() to return a pointer
       to the string associated with the specified <i>category</i> for the current
       global locale. The global locale shall not be changed.

       The string returned by <i>setlocale</i>() is such that a subsequent call
       with that string and its associated <i>category</i> shall restore that part
       of the global locale. The application shall not modify the string
       returned.  The returned string pointer might be invalidated or the
       string content might be overwritten by a subsequent call to
       <i>setlocale</i>().
</pre>
<h2><a id="ERRORS" href="setlocale.3p.html#ERRORS"></a>ERRORS  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       No errors are defined.

       <i>The following sections are informative.</i>
</pre>
<h2><a id="EXAMPLES" href="setlocale.3p.html#EXAMPLES"></a>EXAMPLES  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       None.
</pre>
<h2><a id="APPLICATION_USAGE" href="setlocale.3p.html#APPLICATION_USAGE"></a>APPLICATION USAGE  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       The following code illustrates how a program can initialize the
       international environment for one language, while selectively
       modifying the global locale such that regular expressions and string
       operations can be applied to text recorded in a different language:

           <b>setlocale(LC_ALL, "De");</b>
           <b>setlocale(LC_COLLATE, "Fr@dict");</b>

       Internationalized programs can initiate language operation according
       to environment variable settings (see the Base Definitions volume of
       POSIX.1‐2008, <i>Section 8.2</i>, <i>Internationalization Variables</i>) by calling
       <i>setlocale</i>() as follows:

           <b>setlocale(LC_ALL, "");</b>

       Changing the setting of <i>LC_MESSAGES</i> has no effect on catalogs that
       have already been opened by calls to <i>catopen</i>().

       In order to make use of different locale settings while multiple
       threads are running, applications should use <i>uselocale</i>() in
       preference to <i>setlocale</i>().
</pre>
<h2><a id="RATIONALE" href="setlocale.3p.html#RATIONALE"></a>RATIONALE  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       References to the international environment or locale in the
       following text relate to the global locale for the process. This can
       be overridden for individual threads using <i>uselocale</i>().

       The ISO C standard defines a collection of functions to support
       internationalization.  One of the most significant aspects of these
       functions is a facility to set and query the <i>international</i>
       <i>environment</i>.  The international environment is a repository of
       information that affects the behavior of certain functionality,
       namely:

        1. Character handling

        2. Collating

        3. Date/time formatting

        4. Numeric editing

        5. Monetary formatting

        6. Messaging

       The <i>setlocale</i>() function provides the application developer with the
       ability to set all or portions, called <i>categories</i>, of the
       international environment.  These categories correspond to the areas
       of functionality mentioned above. The syntax for <i>setlocale</i>() is as
       follows:

           <b>char *setlocale(int </b><i>category</i><b>, const char *</b><i>locale</i><b>);</b>

       where <i>category</i> is the name of one of following categories, namely:

              LC_COLLATE LC_CTYPE LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIME

       In addition, a special value called LC_ALL directs <i>setlocale</i>() to set
       all categories.

       There are two primary uses of <i>setlocale</i>():

        1. Querying the international environment to find out what it is set
           to

        2. Setting the international environment, or <i>locale</i>, to a specific
           value

       The behavior of <i>setlocale</i>() in these two areas is described below.
       Since it is difficult to describe the behavior in words, examples are
       used to illustrate the behavior of specific uses.

       To query the international environment, <i>setlocale</i>() is invoked with a
       specific category and the null pointer as the locale. The null
       pointer is a special directive to <i>setlocale</i>() that tells it to query
       rather than set the international environment.  The following syntax
       is used to query the name of the international environment:

           <b>setlocale({LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES, LC_MONETARY, \</b>
               <b>LC_NUMERIC, LC_TIME},(char *) NULL);</b>

       The <i>setlocale</i>() function shall return the string corresponding to the
       current international environment. This value may be used by a
       subsequent call to <i>setlocale</i>() to reset the international environment
       to this value. However, it should be noted that the return value from
       <i>setlocale</i>() may be a pointer to a static area within the function and
       is not guaranteed to remain unchanged (that is, it may be modified by
       a subsequent call to <i>setlocale</i>()).  Therefore, if the purpose of
       calling <i>setlocale</i>() is to save the value of the current international
       environment so it can be changed and reset later, the return value
       should be copied to an array of <b>char </b>in the calling program.

       There are three ways to set the international environment with
       <i>setlocale</i>():

       <i>setlocale</i>(<i>category</i>, <i>string</i>)
             This usage sets a specific <i>category</i> in the international
             environment to a specific value corresponding to the value of
             the <i>string</i>.  A specific example is provided below:

                 <b>setlocale(LC_ALL, "fr_FR.ISO-8859-1");</b>

             In this example, all categories of the international
             environment are set to the locale corresponding to the string
             <b>"fr_FR.ISO-8859-1"</b>, or to the French language as spoken in
             France using the ISO/IEC 8859‐1:1998 standard codeset.

             If the string does not correspond to a valid locale,
             <i>setlocale</i>() shall return a null pointer and the international
             environment is not changed. Otherwise, <i>setlocale</i>() shall return
             the name of the locale just set.

       <i>setlocale</i>(<i>category</i>, "C")
             The ISO C standard states that one locale must exist on all
             conforming implementations. The name of the locale is C and
             corresponds to a minimal international environment needed to
             support the C programming language.

       <i>setlocale</i>(<i>category</i>, "")
             This sets a specific category to an implementation-defined
             default.  This corresponds to the value of the environment
             variables.
</pre>
<h2><a id="FUTURE_DIRECTIONS" href="setlocale.3p.html#FUTURE_DIRECTIONS"></a>FUTURE DIRECTIONS  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       None.
</pre>
<h2><a id="SEE_ALSO" href="setlocale.3p.html#SEE_ALSO"></a>SEE ALSO  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       <a href="catopen.3p.html">catopen(3p)</a>, <a href="../man1/exec.1p.html">exec(1p)</a>, <a href="fprintf.3p.html">fprintf(3p)</a>, <a href="fscanf.3p.html">fscanf(3p)</a>, <a href="isalnum.3p.html">isalnum(3p)</a>,
       <a href="isalpha.3p.html">isalpha(3p)</a>, <a href="isblank.3p.html">isblank(3p)</a>, <a href="iscntrl.3p.html">iscntrl(3p)</a>, <a href="isdigit.3p.html">isdigit(3p)</a>, <a href="isgraph.3p.html">isgraph(3p)</a>,
       <a href="islower.3p.html">islower(3p)</a>, <a href="isprint.3p.html">isprint(3p)</a>, <a href="ispunct.3p.html">ispunct(3p)</a>, <a href="isspace.3p.html">isspace(3p)</a>, <a href="isupper.3p.html">isupper(3p)</a>,
       <a href="iswalnum.3p.html">iswalnum(3p)</a>, <a href="iswalpha.3p.html">iswalpha(3p)</a>, <a href="iswblank.3p.html">iswblank(3p)</a>, <a href="iswcntrl.3p.html">iswcntrl(3p)</a>, <a href="iswctype.3p.html">iswctype(3p)</a>,
       <a href="iswdigit.3p.html">iswdigit(3p)</a>, <a href="iswgraph.3p.html">iswgraph(3p)</a>, <a href="iswlower.3p.html">iswlower(3p)</a>, <a href="iswprint.3p.html">iswprint(3p)</a>, <a href="iswpunct.3p.html">iswpunct(3p)</a>,
       <a href="iswspace.3p.html">iswspace(3p)</a>, <a href="iswupper.3p.html">iswupper(3p)</a>, <a href="iswxdigit.3p.html">iswxdigit(3p)</a>, <a href="isxdigit.3p.html">isxdigit(3p)</a>,
       <a href="localeconv.3p.html">localeconv(3p)</a>, <a href="mblen.3p.html">mblen(3p)</a>, <a href="mbstowcs.3p.html">mbstowcs(3p)</a>, <a href="mbtowc.3p.html">mbtowc(3p)</a>, <a href="nl_langinfo.3p.html">nl_langinfo(3p)</a>,
       <a href="perror.3p.html">perror(3p)</a>, <a href="psiginfo.3p.html">psiginfo(3p)</a>, <a href="setlocale.3p.html">setlocale(3p)</a>, <a href="strcoll.3p.html">strcoll(3p)</a>, <a href="strerror.3p.html">strerror(3p)</a>,
       <a href="strfmon.3p.html">strfmon(3p)</a>, <a href="strsignal.3p.html">strsignal(3p)</a>, <a href="strtod.3p.html">strtod(3p)</a>, <a href="strxfrm.3p.html">strxfrm(3p)</a>, <a href="tolower.3p.html">tolower(3p)</a>,
       <a href="toupper.3p.html">toupper(3p)</a>, <a href="towlower.3p.html">towlower(3p)</a>, <a href="towupper.3p.html">towupper(3p)</a>, <a href="uselocale.3p.html">uselocale(3p)</a>, <a href="wcscoll.3p.html">wcscoll(3p)</a>,
       <a href="wcstod.3p.html">wcstod(3p)</a>, <a href="wcstombs.3p.html">wcstombs(3p)</a>, <a href="wcsxfrm.3p.html">wcsxfrm(3p)</a>, <a href="wctomb.3p.html">wctomb(3p)</a>

       The  Base  Definitions  volume  of  POSIX.1‐2008,  <i>Chapter 7</i>, <i>Locale</i>,
       <i>Chapter 8</i>, <i>Environment Variables</i>, <a href="../man0/langinfo.h.0p.html">langinfo.h(0p)</a>, <a href="../man0/locale.h.0p.html">locale.h(0p)</a>
</pre>
<h2><a id="COPYRIGHT" href="setlocale.3p.html#COPYRIGHT"></a>COPYRIGHT  &nbsp; &nbsp; &nbsp; &nbsp; <a href="setlocale.3p.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       Portions of this text are reprinted and reproduced in electronic form
       from IEEE Std 1003.1, 2013 Edition, Standard for Information
       Technology -- Portable Operating System Interface (POSIX), The Open
       Group Base Specifications Issue 7, Copyright (C) 2013 by the
       Institute of Electrical and Electronics Engineers, Inc and The Open
       Group.  (This is POSIX.1-2008 with the 2013 Technical Corrigendum 1
       applied.) In the event of any discrepancy between this version and
       the original IEEE and The Open Group Standard, the original IEEE and
       The Open Group Standard is the referee document. The original
       Standard can be obtained online at <a href="http://www.unix.org/online.html">http://www.unix.org/online.html</a> .

       Any typographical or formatting errors that appear in this page are
       most likely to have been introduced during the conversion of the
       source files to man page format. To report such errors, see
       <a href="https://www.kernel.org/doc/man-pages/reporting_bugs.html">https://www.kernel.org/doc/man-pages/reporting_bugs.html</a> .

<span class="footline">IEEE/The Open Group                 2013                       SETLOCALE(3P)</span>
</pre>

<hr class="end-man-text" />
<p>Pages that refer to this page: 
    <a href="../man0/ctype.h.0p.html">ctype.h(0p)</a>,&nbsp; 
    <a href="../man0/locale.h.0p.html">locale.h(0p)</a>,&nbsp; 
    <a href="../man0/wctype.h.0p.html">wctype.h(0p)</a>,&nbsp; 
    <a href="../man1/awk.1p.html">awk(1p)</a>,&nbsp; 
    <a href="exec.3p.html">exec(3p)</a>,&nbsp; 
    <a href="fprintf.3p.html">fprintf(3p)</a>,&nbsp; 
    <a href="fscanf.3p.html">fscanf(3p)</a>,&nbsp; 
    <a href="fwprintf.3p.html">fwprintf(3p)</a>,&nbsp; 
    <a href="fwscanf.3p.html">fwscanf(3p)</a>,&nbsp; 
    <a href="getdate.3p.html">getdate(3p)</a>,&nbsp; 
    <a href="isalnum.3p.html">isalnum(3p)</a>,&nbsp; 
    <a href="isalpha.3p.html">isalpha(3p)</a>,&nbsp; 
    <a href="isblank.3p.html">isblank(3p)</a>,&nbsp; 
    <a href="iscntrl.3p.html">iscntrl(3p)</a>,&nbsp; 
    <a href="isgraph.3p.html">isgraph(3p)</a>,&nbsp; 
    <a href="islower.3p.html">islower(3p)</a>,&nbsp; 
    <a href="isprint.3p.html">isprint(3p)</a>,&nbsp; 
    <a href="ispunct.3p.html">ispunct(3p)</a>,&nbsp; 
    <a href="isspace.3p.html">isspace(3p)</a>,&nbsp; 
    <a href="isupper.3p.html">isupper(3p)</a>,&nbsp; 
    <a href="iswalnum.3p.html">iswalnum(3p)</a>,&nbsp; 
    <a href="iswalpha.3p.html">iswalpha(3p)</a>,&nbsp; 
    <a href="iswblank.3p.html">iswblank(3p)</a>,&nbsp; 
    <a href="iswcntrl.3p.html">iswcntrl(3p)</a>,&nbsp; 
    <a href="iswctype.3p.html">iswctype(3p)</a>,&nbsp; 
    <a href="iswdigit.3p.html">iswdigit(3p)</a>,&nbsp; 
    <a href="iswgraph.3p.html">iswgraph(3p)</a>,&nbsp; 
    <a href="iswlower.3p.html">iswlower(3p)</a>,&nbsp; 
    <a href="iswprint.3p.html">iswprint(3p)</a>,&nbsp; 
    <a href="iswpunct.3p.html">iswpunct(3p)</a>,&nbsp; 
    <a href="iswspace.3p.html">iswspace(3p)</a>,&nbsp; 
    <a href="iswupper.3p.html">iswupper(3p)</a>,&nbsp; 
    <a href="iswxdigit.3p.html">iswxdigit(3p)</a>,&nbsp; 
    <a href="localeconv.3p.html">localeconv(3p)</a>,&nbsp; 
    <a href="nl_langinfo.3p.html">nl_langinfo(3p)</a>,&nbsp; 
    <a href="setlocale.3p.html">setlocale(3p)</a>,&nbsp; 
    <a href="strsignal.3p.html">strsignal(3p)</a>,&nbsp; 
    <a href="strtod.3p.html">strtod(3p)</a>,&nbsp; 
    <a href="tolower.3p.html">tolower(3p)</a>,&nbsp; 
    <a href="toupper.3p.html">toupper(3p)</a>,&nbsp; 
    <a href="towlower.3p.html">towlower(3p)</a>,&nbsp; 
    <a href="towupper.3p.html">towupper(3p)</a>,&nbsp; 
    <a href="uselocale.3p.html">uselocale(3p)</a>,&nbsp; 
    <a href="wcstod.3p.html">wcstod(3p)</a>
</p>
<hr/>

 
<hr class="start-footer" />

<div class="footer"> 

<table class="colophon-table">
    <tr>
    <td class="pub-info">
        <p>
            HTML rendering created 2018-02-02
            by <a href="http://man7.org/mtk/index.html">Michael Kerrisk</a>, 
            author of 
            <a href="http://man7.org/tlpi/"><em>The Linux Programming Interface</em></a>, 
            maintainer of the 
            <a href="https://www.kernel.org/doc/man-pages/">Linux <em>man-pages</em> project</a>.
        </p>
        <p>
            For details of in-depth
            <strong>Linux/UNIX system programming training courses</strong>
            that I teach, look <a href="http://man7.org/training/">here</a>.
        </p>
        <p>
            Hosting by <a href="http://www.jambit.com/index_en.html">jambit GmbH</a>.
        </p>
        <p>
            <a href="http://validator.w3.org/check?uri=referer">
            <img src="http://www.w3.org/Icons/valid-xhtml11"
                alt="Valid XHTML 1.1" height="31" width="88" />
            </a>
        </p>
    </td>
    <td class="colophon-divider">
    </td>
    <td class="tlpi-cover">
        <a href="http://man7.org/tlpi/"><img src="../../../tlpi/cover/TLPI-front-cover-vsmall.png" alt="Cover of TLPI" /></a>
    </td>
    </tr>
</table>

</div>

<hr class="end-footer" />



<!--BEGIN-SITETRACKING-->
<!-- SITETRACKING.man7.org_linux_man-pages -->

<!-- Start of StatCounter Code (xhtml) -->

<script type="text/javascript">
//<![CDATA[
var sc_project=7422636; 
var sc_invisible=1; 
var sc_security="9b6714ff"; 
//]]>
</script>
<script type="text/javascript"
src="http://www.statcounter.com/counter/counter_xhtml.js"></script>
<noscript><div class="statcounter"><a title="website
statistics" href="http://statcounter.com/"
class="statcounter"><img class="statcounter"
src="http://c.statcounter.com/7422636/0/9b6714ff/1/"
alt="website statistics" /></a></div></noscript>

<!-- End of StatCounter Code -->


<!-- Start of Google Analytics Code -->

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-9830363-8']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

<!-- End of Google Analytics Code -->

<!--END-SITETRACKING-->

</body>
</html>
