代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/333477/12678892
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/333477/12678984
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/332889/12718628
h utils.h
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying,
www.eeworm.com/read/332889/12718813
cpp utils.cpp
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying,
www.eeworm.com/read/246157/12753303
asm utils.asm
; Utils
; #########################################################################
.data?
dwRandSeed dd ?
CRCPoly equ 0EDB88320h ; PK-ZIP p
www.eeworm.com/read/332246/12771029
pas utils.pas
unit utils;
interface
uses
SysUtils, WinTypes, WinProcs, Classes, Consts,Dialogs,inifiles,FILECTRL,
Graphics,Controls,Forms;
type
EInvalidDest = class(EStreamError);
EFCantMove
www.eeworm.com/read/245184/12812260
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