?? path.h
字號:
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-98 by Solar Designer *//* * Path name expansion routines. */#ifndef _JOHN_PATH_H#define _JOHN_PATH_H/* * Initializes the home directory path based on argv[0]. */extern void path_init(char **argv);/* * Expands "~/" in a path name. */extern char *path_expand(char *name);/* * Frees the memory allocated in path_init(). */extern void path_done();#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -