代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/286514/8762280
c utils.c
/*
Copyright (C) 2002-2008 Thomas Ries
This file is part of Siproxd.
Siproxd is free software; you can redistribute it and/or modify
it under the terms of the GN
www.eeworm.com/read/429592/8801230
c utils.c
/**********************************************************
*Filename: utils.c
*Author: 星云鹏
*Date: 2008-05-15
*
*与协议无关的若干函数
*********************************************************/
#in
www.eeworm.com/read/429592/8801285
h utils.h
/**********************************************************
*Filename: utils.h
*Author: 星云鹏
*Date: 2008-05-15
*
*与协议无关的若干函数
*********************************************************/
#ifn
www.eeworm.com/read/429132/8817224
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/428854/8832608
o utils.o
www.eeworm.com/read/428854/8832660
c utils.c
/*
* Copyright (C) 2006-2007 by egnite Software GmbH. All rights reserved.
* Copyright (C) 2008 by egnite GmbH. All rights reserved.
*
* Redistribution and use in source and binary forms, with
www.eeworm.com/read/428854/8832781
lst utils.lst
ARM GAS C:\DOKUME~1\harald\LOKALE~1\Temp/ccAJaaaa.s page 1
1 .file "utils.c"
2 @ GNU C version 4.2.1 (arm-elf)
3 @ compiled by GNU C vers
www.eeworm.com/read/428854/8832902
h utils.h
#ifndef _UTILS_H_
#define _UTILS_H_
/*
* Copyright (C) 2006-2007 by egnite Software GmbH. All rights reserved.
* Copyright (C) 2008 by egnite GmbH. All rights reserved.
*
* Redistribution
www.eeworm.com/read/187216/8841698
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/187216/8841713
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,