⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.h

📁 使用TEA加密方法的简单加密解密程序. 包含 COMMAND版本 和 WIN32 两个版本.可供初学者学习. 超级雷电
💻 H
字号:
#include <iostream>
#include "io.h"

#ifndef _List_H_
#define _List_H_

class List {
    typedef struct node {
        char name[_MAX_PATH];
        node*next;
    }Node, *Flist;
    
    private:
        Flist file;
        int len;
        char temp[_MAX_PATH];
    public:
        List();
        ~List();
        void init();
        bool reinit(const char *dir, int n = 255);
        int getlen();
        char* get(int n);
        char* gettop();
        bool add(const char* dir);
        void disfile();
        void dissub(int len = 0);
};

#endif        
        

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -