代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/140629/13071375
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/140494/13078417
o utils.o
www.eeworm.com/read/140494/13078521
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/140494/13078530
c utils.c
#include "def.h"
#include "44blib.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];
}
www.eeworm.com/read/242253/13085571
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/242209/13087099
h utils.h
#if defined (_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#ifndef JETBYTE_TOOLS_WIN32_UTILS__
#define JETBYTE_TOOLS_WIN32_UTILS__
////////////////////////////////////////////////////////
www.eeworm.com/read/242209/13087132
cpp utils.cpp
///////////////////////////////////////////////////////////////////////////////
//
// File : $Workfile: Utils.cpp $
// Version : $Revision: 2 $
// Function :
//
// Author
www.eeworm.com/read/242209/13087179
h utils.h
#if defined (_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#ifndef JETBYTE_TOOLS_COM_UTILS_INCLUDED__
#define JETBYTE_TOOLS_COM_UTILS_INCLUDED__
//////////////////////////////////////////
www.eeworm.com/read/242209/13087198
cpp utils.cpp
///////////////////////////////////////////////////////////////////////////////
//
// File : $Workfile: Utils.cpp $
// Version : $Revision: 4 $
// Function :
//
// Author
www.eeworm.com/read/241927/13108688
c utils.c
#include
void rtrim(char *msg) {
int i;
if(NULL == msg) return;
for(i=strlen(msg);i>0;i--) {
if(msg[i-1] == ' ')
msg[i-1]=0;
else