dos 6.0 源代码 .对大家提高有一定的帮助。

源代码在线查看: case.txt

软件大小: 20274 K
上传用户: a520
关键词: dos 6.0 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				SUMMARY lower upper MakeStr
				
				#include 
				
				char *lower(pstr)
				char *pstr;
				
				char *upper(pstr)
				char *pstr;
				
				DESCRIPTION
				
				lower and upper convert the string to lower and upper case.
				
				RETURN VALUE
				
				Return a pointer to converted string.
				
				IMPLEMENTATION
				
				Calls strlwr and strupr from C library.
				
				SEE ALSO
				
				
				NOTE
				
				
				EXAMPLE
				
				#include 
				
				char str[] = "Mixed Case String";
				
				main(c, argv)
				int c;
				char *argv[];
				{
				    char *pstrLower = lower(MakeStr(str));
				    char *pstrUpper = upper(MakeStr(str));
				
				    printf("%s\n%s\n%s\n", str, pstrLower, pstrUpper);
				}
							

相关资源