aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/locale/ldpart.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
| | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
* libc: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-251-0/+2
| | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using mis-identified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Notes: svn path=/head/; revision=326193
* Fixes to locale code to properly use indirect pointers in order to preventJordan K. Hubbard2003-06-131-1/+1
| | | | | | | | | | memory leaks (fixes bugs earlier purported to be fixed). Submitted by: Ed Moy <emoy@apple.com> Obtained from: Apple Computer, Inc. MFC after: 2 weeks Notes: svn path=/head/; revision=116274
* Rewrite locale loading procedures, so any load failure will not affectAndrey A. Chernov2002-08-081-0/+4
| | | | | | | | | | | currently cached data. It allows a number of nice things, like: removing fallback code from single locale loading, remove memory leak when LC_CTYPE data loaded again and again, efficient cache use, not only for setlocale(locale1); setlocale(locale1), but for setlocale(locale1); setlocale("C"); setlocale(locale1) too (i.e. data file loaded only once). Notes: svn path=/head/; revision=101498
* style(9)'ifyAlexey Zelkin2001-12-201-6/+6
| | | | Notes: svn path=/head/; revision=88309
* * Add my e-mail to copyrightsAlexey Zelkin2001-12-111-1/+1
| | | | | | | * style(9)'ify Notes: svn path=/head/; revision=87658
* add additional function parameter: bufsize_min. it's possibleAlexey Zelkin2001-02-131-1/+1
| | | | | | | | | to check two sizes per one function invocation now. Suggested by: ache Notes: svn path=/head/; revision=72442
* Make FreeBSD locale support complete: add support for rest locale categoriesAlexey Zelkin2001-02-081-0/+35
LC_MONETARY, LC_NUMERIC and LC_MESSAGES. Remove stub functions since they don't need anymore. Reviewed by: silence on -i18n Notes: svn path=/head/; revision=72165