Changeset 13546 in vbox for trunk/include/iprt
- Timestamp:
- Oct 23, 2008 5:56:56 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38404
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r13472 r13546 815 815 * asterisk matches zero or more characters and question 816 816 * mark matches exactly one character. 817 * @param cchPattern The pattern length. Pass SIZE_T_MAX (~(size_t)0) if you817 * @param cchPattern The pattern length. Pass RTSTR_MAX (~(size_t)0) if you 818 818 * don't know the length and wish to stop at the string 819 819 * terminator. 820 820 * @param pszString The string to match against the pattern. 821 * @param cchString The string length. Pass SIZE_T_MAX (~(size_t)0) if you821 * @param cchString The string length. Pass RTSTR_MAX (~(size_t)0) if you 822 822 * don't know the length and wish to match up to the string 823 823 * terminator. … … 834 834 * 835 835 * @param pszPatterns The patterns. 836 * @param cchPatterns The lengths of the patterns to use. Pass SIZE_T_MAX836 * @param cchPatterns The lengths of the patterns to use. Pass RTSTR_MAX 837 837 * (~(size_t)0) to stop at the terminator. 838 838 * @param pszString The string to match against the pattern. 839 * @param cchString The string length. Pass SIZE_T_MAX (~(size_t)0) stop839 * @param cchString The string length. Pass RTSTR_MAX (~(size_t)0) stop 840 840 * stop at the terminator. 841 841 * @param poffPattern Offset into the patterns string of the patttern that 842 * matched. If no match, this will be set to SIZE_T_MAX.842 * matched. If no match, this will be set to RTSTR_MAX. 843 843 * This is optional, NULL is fine. 844 844 */
Note:
See TracChangeset
for help on using the changeset viewer.