Changeset 13549 in vbox for trunk/include/iprt
- Timestamp:
- Oct 24, 2008 11:31:40 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38412
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r13546 r13549 815 815 * asterisk matches zero or more characters and question 816 816 * mark matches exactly one character. 817 * @param cchPattern The pattern length. Pass RTSTR_MAX (~(size_t)0) if you 818 * don't know the length and wish to stop at the string 819 * terminator. 817 * @param cchPattern The pattern length. Pass RTSTR_MAX if you don't know the 818 * length and wish to stop at the string terminator. 820 819 * @param pszString The string to match against the pattern. 821 * @param cchString The string length. Pass RTSTR_MAX (~(size_t)0) if you 822 * don't know the length and wish to match up to the string 823 * terminator. 820 * @param cchString The string length. Pass RTSTR_MAX if you don't know the 821 * length and wish to match up to the string terminator. 824 822 */ 825 823 RTDECL(bool) RTStrSimplePatternNMatch(const char *pszPattern, size_t cchPattern, … … 834 832 * 835 833 * @param pszPatterns The patterns. 836 * @param cchPatterns The lengths of the patterns to use. Pass RTSTR_MAX 837 * (~(size_t)0) tostop at the terminator.834 * @param cchPatterns The lengths of the patterns to use. Pass RTSTR_MAX to 835 * stop at the terminator. 838 836 * @param pszString The string to match against the pattern. 839 * @param cchString The string length. Pass RTSTR_MAX (~(size_t)0) stop840 * stop at theterminator.837 * @param cchString The string length. Pass RTSTR_MAX stop stop at the 838 * terminator. 841 839 * @param poffPattern Offset into the patterns string of the patttern that 842 840 * matched. If no match, this will be set to RTSTR_MAX.
Note:
See TracChangeset
for help on using the changeset viewer.