代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/163518/10155226
c utils.c
#include "../inc/def.h"
#include "../inc/board.h"
#include "../inc/utils.h"
void memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const cha
www.eeworm.com/read/163518/10155277
o utils.o
www.eeworm.com/read/163518/10155319
o utils.o
www.eeworm.com/read/163380/10163256
o utils.o
www.eeworm.com/read/163380/10163285
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/163380/10163323
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(unsigned lo
www.eeworm.com/read/359055/10168159
pas utils.pas
unit Utils;
interface
uses
Windows,sysutils, ShlObj;
type
TSpecialFolder = (
sfDesktop, //
sfInternet, // Internet Explorer (icon on de
www.eeworm.com/read/359054/10168273
pas utils.pas
unit Utils;
interface
uses
Windows, ShlObj;
type
TSpecialFolder = (
sfDesktop, //
sfInternet, // Internet Explorer (icon on desktop)
www.eeworm.com/read/163079/10176617
c utils.c
/*
* INET An implementation of the TCP/IP protocol suite for the LINUX
* operating system. INET is implemented using the BSD Socket
* interface as the means of communication with the user l
www.eeworm.com/read/357373/10211093