代码搜索:utils

找到约 10,000 项符合「utils」的源代码

代码结果 10,000
www.eeworm.com/read/421532/10732492

f utils.f

www.eeworm.com/read/275729/10798309

cxx utils.cxx

/* * * C++ Portable Types Library (PTypes) * Version 1.7.5 Released 9-Mar-2003 * * Copyright (c) 2001, 2002, 2003 Hovik Melikyan * * http://www.melikyan.com/ptypes/ * http://ptypes.sour
www.eeworm.com/read/275729/10798354

h utils.h

/* * * C++ Portable Types Library (PTypes) * Version 1.7.5 Released 9-Mar-2003 * * Copyright (c) 2001, 2002, 2003 Hovik Melikyan * * http://www.melikyan.com/ptypes/ * http://ptypes.sour
www.eeworm.com/read/420219/10810422

cpp utils.cpp

/* Copyright (C) Jungo 2002 - 2006 */ #include "stdafx.h" #include "utils.h" #if !defined(WIN16) #include "windrvr.h" #if defined(WIN32) && !defined(WINCE) #include #endif
www.eeworm.com/read/420219/10810426

h utils.h

/* Copyright (C) Jungo 2002 - 2006 */ #ifndef _WD_UTILS_H_ #define _WD_UTILS_H_ #if defined (__KERNEL_DRIVER__) #include "kd.h" #elif defined (__KERNEL__) #include "kpstdlib.h" #end
www.eeworm.com/read/275394/10819273

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/275394/10819385

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/275394/10819419

o utils.o

www.eeworm.com/read/420029/10822792

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,
www.eeworm.com/read/420029/10822804

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