check-43.c

来自「RSA加密/解密算法源码 asn1c-0.9.12」· C语言 代码 · 共 28 行

C
28
字号
#undef	NDEBUG#include <stdio.h>#include <stdlib.h>#include <sys/types.h>#include <string.h>#include <assert.h>#include <Test-structure-1.h>#include <Choice-1.h>intmain(int ac, char **av) {	Test_structure_1_t ts1;	Choice_1_t cs1;	(void)ac;	/* Unused argument */	(void)av;	/* Unused argument */	memset(&ts1, 0, sizeof(ts1));	memset(&cs1, 0, sizeof(cs1));	/*	 * No plans to fill it up: just checking whether it compiles or not.	 */	return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?