代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/177410/9456337
c utils.c
www.eeworm.com/read/373036/9477012
c utils.c
#include "tdestr.h"
#include "common.h"
#include "define.h"
#include "tdefunc.h"
int myiswhitespc( int c )
{
return( c == ' ' || (ispunct( c ) && c != '_') || iscntrl( c ) );
}
www.eeworm.com/read/176987/9477963
c utils.c
#include "def.h"
#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
www.eeworm.com/read/176987/9477989
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
www.eeworm.com/read/176905/9480021
h utils.h
#pragma once
#include "Color.h"
//#include "AutoFont.h"
#include
#include "PerfTimer.h"
#include "AutoFont.h"
int RandomInteger(int x,int y);
double RandomFloat();
bool RandBo
www.eeworm.com/read/176905/9480054
cpp utils.cpp
#include "StdAfx.h"
#include "utils.h"
int CGlobals::WIN_WIDTH = 800;
int CGlobals::WIN_HEIGHT = 600;
double CGlobals::EPSILON = 0.005;
long CGlobals::INFINITY=999999;
double CGlobals::PI= 3
www.eeworm.com/read/372874/9489208
o utils.o
www.eeworm.com/read/372874/9489227
o utils.o
www.eeworm.com/read/372873/9489319
o utils.o
www.eeworm.com/read/372873/9489344