Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
763 B

  1. #ifndef __STRINGHELP_H__
  2. #define __STRINGHELP_H__
  3. /*---------------------------------------------------------------------------
  4. File: StrHelp.h
  5. Comments: Contains general string helper functions.
  6. REVISION LOG ENTRY
  7. Revision By: Paul Thompson
  8. Revised on 11/02/00
  9. ---------------------------------------------------------------------------
  10. */
  11. BOOL //ret- TRUE=string found
  12. IsStringInDelimitedString(
  13. LPCWSTR sDelimitedString, // in- delimited string to search
  14. LPCWSTR sString, // in- string to search for
  15. WCHAR cDelimitingChar // in- delimiting character used in the delimited string
  16. );
  17. #endif //__STRINGHELP_H__