Changeset 8245 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Apr 21, 2008 5:24:28 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29978
- Location:
- trunk/src/VBox/Runtime/common/string
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/memchr.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, memcpy().3 * IPRT - CRT Strings, memcpy(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memchr_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT memchr() alias for gcc.3 * IPRT - No-CRT memchr() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcmp.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, memcmp().3 * IPRT - CRT Strings, memcmp(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcmp_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT memcmp() alias for gcc.3 * IPRT - No-CRT memcmp() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcpy.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, memcpy().3 * IPRT - CRT Strings, memcpy(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcpy_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT memcpy() alias for gcc.3 * IPRT - No-CRT memcpy() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memmove_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT memmove() alias for gcc.3 * IPRT - No-CRT memmove() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memset.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, memset().3 * IPRT - CRT Strings, memset(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memset_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT memset() alias for gcc.3 * IPRT - No-CRT memset() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/straprintf.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- Allocating String Formatters.3 * IPRT - Allocating String Formatters. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strchr_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT strchr() alias for gcc.3 * IPRT - No-CRT strchr() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strcmp_alias.c
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- No-CRT strcmp() alias for gcc.3 * IPRT - No-CRT strcmp() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strcpy.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, strcpy().3 * IPRT - CRT Strings, strcpy(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strformat.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- String Formatter.3 * IPRT - String Formatter. 4 4 */ 5 5 … … 788 788 789 789 /* 790 * I ncredibly Portable RuntimeExtensions.790 * IPRT Extensions. 791 791 */ 792 792 case 'R': -
trunk/src/VBox/Runtime/common/string/strformatrt.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- IPRT String Formatter Extensions.3 * IPRT - IPRT String Formatter Extensions. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strformattype.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- IPRT String Formatter Extensions, Dynamic Types.3 * IPRT - IPRT String Formatter Extensions, Dynamic Types. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/string.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- String Manipulation.3 * IPRT - String Manipulation. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strlen.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, strlen().3 * IPRT - CRT Strings, strlen(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strncmp.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- CRT Strings, strncmp().3 * IPRT - CRT Strings, strncmp(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strpbrk.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- strpbrk().3 * IPRT - strpbrk(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strprintf.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- String Formatters.3 * IPRT - String Formatters. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strspace.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- Unique String Spaces.3 * IPRT - Unique String Spaces. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strstrip.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- String Stripping and Trimming.3 * IPRT - String Stripping and Trimming. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strtonum.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- String To Number Convertion.3 * IPRT - String To Number Convertion. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/uni.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- Unicode.3 * IPRT - Unicode. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/unidata.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- Unicode Tables3 * IPRT - Unicode Tables 4 4 * 5 5 * Automatically Generated by G:/coding/vbox/tree/out/win32/debug/obj/src/VBox/Runtime/uniread/uniread.exe (Jan 30 2006 04:37:06) -
trunk/src/VBox/Runtime/common/string/uniread.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- Unicode Specification Reader.3 * IPRT - Unicode Specification Reader. 4 4 */ 5 5 … … 613 613 printf("/** @file\n" 614 614 " *\n" 615 " * I ncredibly Portable Runtime- Unicode Tables\n"615 " * IPRT - Unicode Tables\n" 616 616 " *\n" 617 617 " * Automatically Generated by %s (" __DATE__ " " __TIME__ ")\n" -
trunk/src/VBox/Runtime/common/string/utf-16.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- UTF-163 * IPRT - UTF-16 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/utf-8.cpp
r8170 r8245 1 1 /* $Id$ */ 2 2 /** @file 3 * I ncredibly Portable Runtime- UTF-8 Decoding.3 * IPRT - UTF-8 Decoding. 4 4 */ 5 5
Note:
See TracChangeset
for help on using the changeset viewer.