?? decoder.h
字號:
// decoder.h
#ifndef DECODER_H
#define DECODER_H
#include <stdlib.h>
#include <mem.h>
#include <ctype.h>
#include <stdio.h>
#define SCHAR sizeof(char)
typedef struct{
char *str;
int length;
int size;
int num;
} Cstr;
void Cstr_init(Cstr* cs);
void Cstr_appends(Cstr* cs ,char* str);
void Cstr_appendc(Cstr* cs ,char c);
void Cstr_cleanup(Cstr* cs);
int decode(char* iData, unsigned char iWidth, Cstr* text, char* pass);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -