代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/287701/8675727
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/287701/8675794
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/287701/8675821
o utils.o
www.eeworm.com/read/287544/8683323
o utils.o
www.eeworm.com/read/287544/8683352
o utils.o
www.eeworm.com/read/431298/8690328
c utils.c
#include "tdestr.h"
#include "common.h"
#include "define.h"
#include "tdefunc.h"
/*
* Name: myiswhitespc
* Purpose: To determine whether or not a character is *NOT* part of a "word"
www.eeworm.com/read/287151/8717819
c utils.c
#include "tdestr.h"
#include "common.h"
#include "define.h"
#include "tdefunc.h"
/*
* Name: myiswhitespc
* Purpose: To determine whether or not a character is *NOT* part of a "word"
www.eeworm.com/read/386806/8726395
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/386744/8729038
pas utils.pas
unit Utils;
interface
uses
Windows, WinSock;
{$I ct.inc}
function StrToUcs2(Str: string): string;
function Ucs2ToStr(Str: string): string;
function StrToUcs2Big(Str: string): string
www.eeworm.com/read/286738/8746355
h utils.h
/* *
* $Id: utils.h 137 2005-05-10 17:38:14Z federico $
*
* This file is part of Fenice
*
* Fenice -- Open Media Server
*
* Copyright (C) 2004 by
*
* - Giampaolo Mancini