skipspc.c
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /* */
  3. /* SKIPSPC.C */
  4. /* */
  5. /* Copyright (c) 1991 - Microsoft Corp. */
  6. /* All rights reserved. */
  7. /* Microsoft Confidential */
  8. /*                                                                         */
  9. /* Returns a ptr to first character after any white spaces or '=' chars. */
  10. /* Checks for EOL and if encountered stops processing and returns a ptr  */
  11. /* to the EOL character. */
  12. /*                                                                         */
  13. /* char *SkipLeadingWhite( char *szPtr ) */
  14. /*  */
  15. /* ARGUMENTS: Str - Ptr to a string */
  16. /* RETURNS:  char * - Ptr to first non-white space character or EOL  */
  17. /*  */
  18. /* johnhe - 12/01/89 */
  19. /***************************************************************************/
  20. #include  <strlib.h>
  21. char *SkipLeadingWhite( char *szPtr )
  22. {
  23. while ( IsWhite( *szPtr ) && *szPtr != EOL )
  24. szPtr++;
  25. return( szPtr );
  26. }