摘要:
1 int do_crypt(char *outfile) 2 { 3 unsigned char outbuf[1024]; 4 int outlen, tmplen; 5 /* Bogus key and IV: we'd normally set these from 6 * another 阅读全文
摘要:
#include <stdio.h> typedef int (*function_pointer)(int a, int b); int func(int a, int b, function_pointer test) { test(a, b); } int add(int a, int b) 阅读全文