/
nerfur
/
openbsd-src
ОбзорДокументацияВойти
/
nerfur
/
openbsd-src
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
openbsd-src/
.../libc/string/
..
Makefile.inc

Add wcsnlen(3), wcslen(3) with a max len argument

2 года назад
bcmp.3

Document that these functions are now in strings.h.

11 лет назад
bcmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
bcopy.3

Document that these functions are now in strings.h.

11 лет назад
bcopy.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
bzero.3

Add STANDARDS: denis@ spotted that it was missing. OK deraadt@ jca@ jmc@

9 лет назад
bzero.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
explicit_bzero.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
ffs.3

adapt to bitstring(3) renaming, and look at that bit_ffs(3) is the actual name we want to Xr... ok jmc

7 лет назад
ffs.c

Instead of trying to handle ffs() with the normal rename-mark-hidden-and-alias dance, mark it protected. This works better for both gcc and clang: gcc blocks overriding of internal calls, while clang permits inlining again.

9 лет назад
memccpy.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
memccpy.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
memchr.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
memchr.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
memcmp.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
memcmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
memcpy.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
memcpy.c

clang doesn't propagate attributes like "asm labels" and "visibility(hidden)" to builtins like mem{set,cpy,move} and __stack_smash_handler. So, when building with clang, instead mark those as protected visibility to get rid of the PLT relocations. We can't take the address of them then, but that's ok: it's a build-time error not a run-time error.

9 лет назад
memmem.3

The mdoc(7) .Ft macro does not need quoting of its arguments, but about 10% of our manual pages using this macro employed useless quoting anyway. Remove these quotes such that they do not incite fear, uncertainty, and doubt in developers who happen to look at these pages. jmc@ and tb@ agree with the direction.

год назад
memmem.c

Replace the simple memmem() implementation with a version that is O(n) based on code from musl and now similar to our strstr(). OK tb@ millert@

6 лет назад
memmove.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
memmove.c

clang doesn't propagate attributes like "asm labels" and "visibility(hidden)" to builtins like mem{set,cpy,move} and __stack_smash_handler. So, when building with clang, instead mark those as protected visibility to get rid of the PLT relocations. We can't take the address of them then, but that's ok: it's a build-time error not a run-time error.

9 лет назад
memrchr.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
memset.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
memset.c

clang doesn't propagate attributes like "asm labels" and "visibility(hidden)" to builtins like mem{set,cpy,move} and __stack_smash_handler. So, when building with clang, instead mark those as protected visibility to get rid of the PLT relocations. We can't take the address of them then, but that's ok: it's a build-time error not a run-time error.

9 лет назад
stpcpy.3

in HISTORY, say where this actually came from; ok deraadt@ bentley@

12 лет назад
stpcpy.c

GNU ld has prefixed the contents of .gnu.warning.SYMBOL sections with "warning: " since 2003, so the messages themselves need not contain the prefix anymore.

9 лет назад
stpncpy.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strcasecmp.3

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
strcasecmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strcasecmp_l.c

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
strcasestr.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strcat.3

libc string functions were not ported from pwb to v7

4 года назад
strcat.c

GNU ld has prefixed the contents of .gnu.warning.SYMBOL sections with "warning: " since 2003, so the messages themselves need not contain the prefix anymore.

9 лет назад
strchr.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
strchr.c

As per POSIX, when str{,r}chr is comparing it should convert c to a char.

8 лет назад
strcmp.3

libc string functions were not ported from pwb to v7

4 года назад
strcmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strcoll.3

Improve the description of locale dependency: * mention LC_COLLATE; * clarify that all these functions are infested, including the *_l() versions; * avoid ENVIRONMENT, these functions don't inspect it; * and point to the C library functions that change the locale. OK millert@

8 лет назад
strcoll.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strcoll_l.c

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
strcpy.3

libc string functions were not ported from pwb to v7

4 года назад
strcpy.c

GNU ld has prefixed the contents of .gnu.warning.SYMBOL sections with "warning: " since 2003, so the messages themselves need not contain the prefix anymore.

9 лет назад
strcspn.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
strcspn.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strdup.3

Phrase allocation failure more clearly. ok deraadt@

11 лет назад
strdup.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strerror.3

More consistently put remarks about the less useful LC_* categoties, i.e. those other than LC_CTYPE, into the CAVEATS section, and standardize wording somewhat. OK jmc@

7 лет назад
strerror.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strerror_l.c

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
strerror_r.c

Remove the save_errno dance inside strerror_r(3). It is from the time when we had national language support. OK millert@

10 лет назад
strlcat.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
strlcpy.3

The improbable occurred: strlcpy(3) and strlcat(3) are in POSIX-2024. memmem(3) was also added. Update #include visibility and manpages and add restrict qualifiers.

2 года назад
strlcpy.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
strlen.3

strlen was in v6 libc (s5/perror.c) but not documented till v7 ok schwarze@

4 года назад
strlen.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strmode.3

void functions don't return 0

9 лет назад
strmode.c

strmode takes a mode_t, not an int; prompted by Collin Funk. ok kettenis@ deraadt@ tb@

2 года назад
strncat.3

tweak previous;

12 лет назад
strncat.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strncmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strncpy.3

Use somewhat harsher language and better examples; demonstrate that non-dangerous use functions is difficult. ok guenther

12 лет назад
strncpy.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strndup.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
strnlen.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
strpbrk.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
strpbrk.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strrchr.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
strrchr.c

As per POSIX, when str{,r}chr is comparing it should convert c to a char.

8 лет назад
strsep.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
strsep.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strsignal.3

More consistently put remarks about the less useful LC_* categoties, i.e. those other than LC_CTYPE, into the CAVEATS section, and standardize wording somewhat. OK jmc@

7 лет назад
strsignal.c

__strsignal() is now declared in hidden/signal.h

11 лет назад
strspn.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
strspn.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strstr.3

Add RETURN VALUES section and .Xr to memmem(3). From Michal Mazurek <akfaew at jasminek dot net>. OK tedu@

10 лет назад
strstr.c

Resync our strstr.c with the musl version. Removes some debug code and optimizes one statement in two-way string compare. OK tb@ millert@

6 лет назад
strtok.3

appeared in 4.3BSD before 4.3BSD-Tahoe ok millert@ schwarze@

2 года назад
strtok.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strxfrm.3

Improve the description of locale dependency: * mention LC_COLLATE; * clarify that all these functions are infested, including the *_l() versions; * avoid ENVIRONMENT, these functions don't inspect it; * and point to the C library functions that change the locale. OK millert@

8 лет назад
strxfrm.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
strxfrm_l.c

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
swab.3

use Fn rather than Nm for swab(); from josiah frentsos

4 года назад
swab.c

update swab() to match the current posix definition. "rationale: none." rewrite the function to be simpler as well. the compiler can unroll the loop for us if necessary. ok schwarze

12 лет назад
timingsafe_bcmp.3

loosen the spec for timingsafe functions slightly, so as to not artificially constrain alternative implementations. ok deraadt

12 лет назад
timingsafe_bcmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
timingsafe_memcmp.c

Add framework for resolving (pun intended) libc namespace issues, using wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here.

11 лет назад
wcscasecmp.3

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
wcscasecmp.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcscasecmp_l.c

New POSIX xlocale implementation written from scratch. Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8.

9 лет назад
wcscat.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcscat.c

GNU ld has prefixed the contents of .gnu.warning.SYMBOL sections with "warning: " since 2003, so the messages themselves need not contain the prefix anymore.

9 лет назад
wcschr.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcschr.c

Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one case, by deleting some useless '& of an array' we also eliminate the need for the casts which prompted the original lint warnings

11 лет назад
wcscmp.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcscmp.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcscpy.3

the referred to EXAMPLES section is now in strncpy(3); issue reported by scott cheloha

10 лет назад
wcscpy.c

GNU ld has prefixed the contents of .gnu.warning.SYMBOL sections with "warning: " since 2003, so the messages themselves need not contain the prefix anymore.

9 лет назад
wcscspn.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcscspn.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcsdup.3

update HISTORY and SEE ALSO for all of string(3), together with various smaller improvements; jmc@ and nicm@ both ask me to get this in because further tweaking will be easier in-tree

15 лет назад
wcsdup.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcslcat.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
wcslcpy.3

wcslcpy() and wcslcat() are in POSIX-2024. Update #include visibility and manpages and add restrict qualifiers.

2 года назад
wcslcpy.c

I am retiring my old email address; replace it with my OpenBSD one.

8 лет назад
wcslen.3

Add wcsnlen(3), wcslen(3) with a max len argument

2 года назад
wcslen.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcsncat.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcsncmp.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcsncpy.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcsnlen.c

Add wcsnlen(3), wcslen(3) with a max len argument

2 года назад
wcspbrk.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcspbrk.c

Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one case, by deleting some useless '& of an array' we also eliminate the need for the casts which prompted the original lint warnings

11 лет назад
wcsrchr.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcsrchr.c

Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one case, by deleting some useless '& of an array' we also eliminate the need for the casts which prompted the original lint warnings

11 лет назад
wcsspn.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcsspn.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wcsstr.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wcsstr.c

Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one case, by deleting some useless '& of an array' we also eliminate the need for the casts which prompted the original lint warnings

11 лет назад
wcstok.3

update HISTORY and SEE ALSO for all of string(3), together with various smaller improvements; jmc@ and nicm@ both ask me to get this in because further tweaking will be easier in-tree

15 лет назад
wcstok.c

zap remaining rcsid.

21 год назад
wcswcs.c

Import w* functions so that I can send smaller diffs around.

21 год назад
wcswidth.3

update HISTORY and SEE ALSO for all of string(3), together with various smaller improvements; jmc@ and nicm@ both ask me to get this in because further tweaking will be easier in-tree

15 лет назад
wcswidth.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wmemchr.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wmemchr.c

Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one case, by deleting some useless '& of an array' we also eliminate the need for the casts which prompted the original lint warnings

11 лет назад
wmemcmp.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wmemcmp.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wmemcpy.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wmemcpy.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wmemmove.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wmemmove.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад
wmemset.3

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze

13 лет назад
wmemset.c

Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct and the symbols not in the C standard are weak

11 лет назад