asn1c_compat.h
来自「RSA加密/解密算法源码 asn1c-0.9.12」· C头文件 代码 · 共 21 行
H
21 行
#ifndef ASN1C_COMPAT_H#define ASN1C_COMPAT_H/* * Open the arbitrary file by its base name and extension. * If opt_tmpname is given, a temporary file will be created and * its name returned in (*opt_tmpname). * The (*opt_tmpname) should then be subsequently freed by free(3). */FILE *asn1c_open_file(const char *base_part, const char *extension, char **opt_tmpname);/* * Obtain base name and directory name of a path. * Some systems have them in <libgen.h> as dirname(3) and basename(3). */char *a1c_basename(const char *path);char *a1c_dirname(const char *path);#endif /* ASN1C_COMPAT_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?