📄 list.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 + -