📄 asn1p_xports.c
字号:
#include <stdlib.h>#include <string.h>#include "asn1parser.h"/* * Construct a new structure that would hold the EXPORTS or IMPORTS * clause data. */asn1p_xports_t *asn1p_xports_new() { asn1p_xports_t *xp; xp = calloc(1, sizeof *xp); if(xp) { TQ_INIT(&(xp->members)); } return xp;}/* * Destroy the xports structure. */voidasn1p_xports_free(asn1p_xports_t *xp) { if(xp) { if(xp->from) free(xp->from); if(xp->from_oid) asn1p_oid_free(xp->from_oid); free(xp); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -