📄 string.c
字号:
/*GazOS Operating SystemCopyright (C) 1999 Gareth Owen <gaz@athene.co.uk>This program is free software; you can redistribute it and/ormodify it under the terms of the GNU General Public Licenseas published by the Free Software Foundation; either version 2of the License, or (at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*/#include "keyboard.h"#include "video.h"void gets(char *string){ unsigned char c= 0, count = 0; unsigned char tempstring[2]; tempstring[1] = 0; while(1) { c = getch(); if(c == 10) break; if(c == 8 && count > 0) count-=2; else string[count] = c; tempstring[0] = c; kprint(tempstring); count++; } string[count] = '\0';}int kstrcmp(char *str1, char *str2){ while(*str1 == *str2 && *str1!=0 && *str2!=0) { str1++; str2++; } if(*str1 == *str2) return 0; if(*str1 > *str2) return 1; if(*str1 < *str2) return -1; return -1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -