代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/162275/10320216
o utils.o
www.eeworm.com/read/162275/10320277
c utils.c
#include "utils.h"
void memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const char *)(s2))[i];
}
void memset(void *s, const char ch, i
www.eeworm.com/read/162275/10320305
o utils.o
www.eeworm.com/read/162172/10329478
c utils.c
/***************************************************************************
utils.c - description
-------------------
begin
www.eeworm.com/read/162172/10329642
h utils.h
/***************************************************************************
utils.h - description
-------------------
begin
www.eeworm.com/read/354697/10332875
c utils.c
/*****************************************************************************
* utils.c: BIOSBOX 公共函数
*
* Copyright(C) 2007, uCdragon
* All rights reserved.
*
* History
* 200
www.eeworm.com/read/354697/10332923
h utils.h
/*****************************************************************************
* utils.h: BIOSBOX 公共函数
*
* Copyright(C) 2007, uCdragon
* All rights reserved.
*
* History
* 200
www.eeworm.com/read/354567/10345381
dll utils.dll
www.eeworm.com/read/425503/10350517
o utils.o
www.eeworm.com/read/425503/10350620
h utils.h
#ifndef __UTILS_H
#define __UTILS_H
void memcpy(void *s1, const void *s2, int n);
void memset(void *s, const char ch, int n);
unsigned short ntohs(unsigned short s);
unsigned long ntohl(unsigne