代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/330732/12873161
cpp utils.cpp
#include "utils.h"
#include
//--------------------------itos------------------------------------
// converts an integer to a string
//-----------------------------------------------
www.eeworm.com/read/330732/12873165
h utils.h
#ifndef UTILS_H
#define UTILS_H
#include
#include
#include
#include
#include
#include
using namespace std;
//-----------------
www.eeworm.com/read/143472/12873216
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/330732/12873231
cpp utils.cpp
#include "utils.h"
#include
//--------------------------itos------------------------------------
// converts an integer to a string
//-----------------------------------------------
www.eeworm.com/read/330732/12873233
h utils.h
#ifndef UTILS_H
#define UTILS_H
#include
#include
#include
#include
#include
#include
using namespace std;
//-----------------
www.eeworm.com/read/330732/12873284
cpp utils.cpp
#include "utils.h"
#include
//--------------------------itos------------------------------------
// converts an integer to a string
//-----------------------------------------------
www.eeworm.com/read/330732/12873286
h utils.h
#ifndef UTILS_H
#define UTILS_H
#include
#include
#include
#include
#include
#include
using namespace std;
//-----------------
www.eeworm.com/read/143391/12878721
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/143391/12878726
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/143391/12878740