logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface

Application Usage

       None.

Description

       The  freelocale()  function shall cause the resources allocated for a locale object returned by a call to
       the newlocale() or duplocale() functions to be released.

       The behavior is undefined if the locobj argument is the special locale object LC_GLOBAL_LOCALE or is  not
       a valid locale object handle.

       Any use of a locale object that has been freed results in undefined behavior.

Errors

       None.

       Thefollowingsectionsareinformative.

Examples

FreeingUpaLocaleObject
       The following example shows a code fragment to free a locale object created by newlocale():

           #include <locale.h>
           ...

           /* Every locale object allocated with newlocale() should be
            * freed using freelocale():
            */

           locale_t loc;

           /* Get the locale. */

           loc = newlocale (LC_CTYPE_MASK | LC_TIME_MASK, "locname", NULL);

           /* ... Use the locale object ... */
           ...

           /* Free the locale object resources. */
           freelocale (loc);

Future Directions

       None.

Name

       freelocale — free resources allocated for a locale object

Prolog

       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.

Rationale

       None.

Return Value

       None.

See Also

duplocale(), newlocale(), uselocale()

       The Base Definitions volume of POSIX.1‐2017, <locale.h>

Synopsis

       #include <locale.h>

       void freelocale(locale_t locobj);

See Also