- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
skipspc.c
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:
操作系统开发
开发平台:
Visual C++
- /***************************************************************************/
- /* */
- /* SKIPSPC.C */
- /* */
- /* Copyright (c) 1991 - Microsoft Corp. */
- /* All rights reserved. */
- /* Microsoft Confidential */
- /* */
- /* Returns a ptr to first character after any white spaces or '=' chars. */
- /* Checks for EOL and if encountered stops processing and returns a ptr */
- /* to the EOL character. */
- /* */
- /* char *SkipLeadingWhite( char *szPtr ) */
- /* */
- /* ARGUMENTS: Str - Ptr to a string */
- /* RETURNS: char * - Ptr to first non-white space character or EOL */
- /* */
- /* johnhe - 12/01/89 */
- /***************************************************************************/
- #include <strlib.h>
- char *SkipLeadingWhite( char *szPtr )
- {
- while ( IsWhite( *szPtr ) && *szPtr != EOL )
- szPtr++;
- return( szPtr );
- }