• 大小: 363KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 标签: C  文本  编辑器  

资源简介

用C语言写的文本编辑器 包括了源代码、可运行的EXE和设计文档

资源截图

代码片段和文件信息

#include   
#include   
#include   
#include   

#define KEY_ESC 0x001b
#define KEY_1 49
#define KEY_2 50
#define KEY_3 51
#define KEY_4 52
#define KEY_5 53
#define KEY_6 54
#define KEY_7 55

struct str;
struct index;
struct str_info;
typedef struct str str;
typedef struct str *p_str;  
typedef struct index index;
typedef struct index *p_index;
typedef struct str_info str_info;
typedef struct str_info *p_str_info;
  
struct str                  // 定义链串结构  
{  
    char character ;                    // 组成串的字符( 数据域 )  
    p_str next ;              // 指向下一串结构的指针( 链域 )  
};                              // 串类型  
  
struct index                   // 定义串索引结构  
{  
    int sub_index ;                     // 子串在其父串的位置( 或索引 ) 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       30253  2010-06-02 11:53  editor.c
     文件       25969  2011-07-02 15:07  editor.exe
     文件      434688  2011-07-02 15:08  设计报告.doc

评论

共有 条评论