代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/176591/9490817
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/176591/9490824
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/372751/9494644
java utils.java
package com.briup.bms.common;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
*
* @author Jimmy.Zhang
*
* 2007-7-11上午11:21:51
*/
public class Utils {
public static S
www.eeworm.com/read/372733/9495539
c utils.c
#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, const char ch, i
www.eeworm.com/read/372733/9495594
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/372733/9495615
o utils.o
www.eeworm.com/read/176311/9505141
cc utils.cc
/************************************************************************
---AODV-UIUC---
This software can be used under GNU General Public License.
Author: Binita Gupta
www.eeworm.com/read/176311/9505157
h utils.h
/************************************************************************
---AODV-UIUC---
This software can be used under GNU General Public License.
Author: Binita Gupta
www.eeworm.com/read/176166/9513525
c utils.c
static const char CVSID[] = "$Id: utils.c,v 1.20 2003/04/10 18:37:27 tringali Exp $";
/*******************************************************************************
*
www.eeworm.com/read/176166/9513574
h utils.h
/* $Id: utils.h,v 1.11 2002/11/28 23:22:29 yooden Exp $ */
#ifndef NEDIT_UTILS_H_INCLUDED
#define NEDIT_UTILS_H_INCLUDED
#include
#ifdef VMS
#include "vmsparam.h"
#else
#include