#include #include #include VSL_MAP_IO_INSTANTIATE(unsigned, vnl_double_2, vcl_less);
http://www.codebf.com/read/351636/3102669
#include "configuration.h" unsigned char h323ParamInit = 0; extern struct s_config phoneconfig; unsigned char getNetSpeed() { if (h323ParamInit == 0) return 0; /* Auto mode */ else
http://www.codebf.com/read/173078/5380403
#ifndef _gnu_radius_md4_h #define _gnu_radius_md4_h void grad_md4_calc(unsigned char *out, unsigned char *in, int n); #endif
http://www.codebf.com/read/172818/5381991
#ifndef _gnu_radius_md5_h #define _gnu_radius_md5_h struct MD5Context { uint32_t buf[4]; uint32_t bits[2]; unsigned char in[64]; }; void grad_MD5Init(struct MD5Context *conte
http://www.codebf.com/read/172818/5381998
#include void *memset(void *p, int c, size_t n) { unsigned char *cp = p; while (n--) *cp++ = c; return p; }
http://www.codebf.com/read/172774/5382093
#include int memcmp(void *s1, void *s2, size_t n) { unsigned char *cs1 = s1, *cs2 = s2; while (n-- && *cs1 == *cs2) { cs1++; cs2++; } if ((n+1) == 0 || *cs1 == *cs2
http://www.codebf.com/read/172774/5382094
#include void *memmove(void *s1, void *s2, size_t n) { unsigned char *cs1 = s1, *cs2 = s2; if (cs1 == cs2) return s1; if (cs2 < cs1) { cs1 += n; cs2 += n; while
http://www.codebf.com/read/172774/5382104
#include void *memcpy(void *s1, void *s2, size_t n) { unsigned char *cs1 = s1, *cs2 = s2; while (n--) *cs1++ = *cs2++; return s1; }
http://www.codebf.com/read/172774/5382107
#include void *memchr(void *p, int c, size_t n) { unsigned char *cp = p; while (n--) if (*cp++ == c) return &cp[-1]; return 0; }
http://www.codebf.com/read/172774/5382110
#include #include #include static unsigned int _next = 1; void srand(unsigned int seed) { _next = seed; } int rand(void) { _next = (((_next * 0x4
http://www.codebf.com/read/172774/5382115
虫虫下载站 半导体技术网 电子研发网 源码地带 电源技术网 单片机技术网 医疗电子技术 嵌入式系统与单片机