代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/322019/13391034
pro utils.pro
TEMPLATE = lib
# Add a preproc macro so we can see the directory of the sourcefile
DEFINES+=__PWD__="$$(PWD)"
DESTDIR=$$(CPPLIBS)
target.path=$$(CPPLIBS)
INSTALLS += target
RESOURCES = utils.qrc
#
www.eeworm.com/read/318262/13482339
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
www.eeworm.com/read/318262/13482352
h utils.h
#ifndef __UTILS_H
#define __UTILS_H
void rtrim(char *msg);
#endif
www.eeworm.com/read/318185/13483606
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
www.eeworm.com/read/318185/13483608
c utils.c
#include "utils.h"
#ifndef SELF_BOOT
void *memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const char *)(s2))[i];
return s1;
}
v
www.eeworm.com/read/318171/13484441
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
www.eeworm.com/read/318171/13484449
c utils.c
#include "utils.h"
#ifndef SELF_BOOT
void *memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const char *)(s2))[i];
return s1;
}
v
www.eeworm.com/read/316871/13515419
pas utils.pas
unit Utils;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, CodeSense_TLB, INIFiles, RTDesign, TBX,
LangUnit, ProjOptions, O
www.eeworm.com/read/316871/13515445