MS DOS 6.0 操作系统源码完整版,对于研制操作系统结构,构建个人的操作系统是非常有用的.

源代码在线查看: case.txt

软件大小: 12117 K
上传用户: wzsq12
关键词: 操作系统 DOS 6.0 MS
下载地址: 免注册下载 普通下载 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);
				}
							

相关资源