代码搜索:utils

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

代码结果 10,000
www.eeworm.com/read/361963/10026374

c utils.c

/* * Cisco router simulation platform. * Copyright (c) 2005,2006 Christophe Fillot. All rights reserved. * * Utility functions. */ #define _GNU_SOURCE #include #include #
www.eeworm.com/read/361963/10026605

h utils.h

/* * Cisco router simulation platform. * Copyright (c) 2005,2006 Christophe Fillot (cf@utc.fr) */ #ifndef __UTILS_H__ #define __UTILS_H__ #include #include #include
www.eeworm.com/read/164559/10103339

cpp utils.cpp

#include "string.h" #include "stdio.h" #include #include #include "utils.h" #define HTML_EXT_LEN 256 void TRIM(char* a) { int len=0; while ((a)[len] &
www.eeworm.com/read/164559/10103341

h utils.h

#ifndef UTILS_H #define UTILS_H #include #include enum debug_level{ LEVEL_NO=0, LEVEL_ALL=1, LEVEL_INFO=2, LEVEL_DEBUG=3, LEVEL_ERROR=4 }; extern
www.eeworm.com/read/164450/10107832

c utils.c

/* General utility routines for the remote server for GDB. Copyright (C) 1986, 1989, 1993 Free Software Foundation, Inc. This file is part of GDB. This program is free software; you can redistrib
www.eeworm.com/read/359413/10147216

c utils.c

/**************************************************************************** # Spcaview: Spca5xx Grabber # # Copyright (C) 2004 2005 Michel Xhaard
www.eeworm.com/read/359413/10147265

h utils.h

/**************************************************************************** # spcaview: Sdl video recorder and viewer with sound. # #This package work with the spca5xx based webcam with th
www.eeworm.com/read/163710/10148681

c utils.c

#include "utils.h" int strncmp(const char *cs, const char *ct, size_t count) { register signed char __res = 0; while (count) { if ((__res = *cs - *ct++) != 0 || !*cs++) break; count--; }
www.eeworm.com/read/163710/10148848

h utils.h

#ifndef __UTILS_H #define __UTILS_H #include "types.h" int strncmp(const char *cs, const char *ct, size_t count); void * memcpy(void *dest, const void *src, size_t count); void * memset(void *s, int
www.eeworm.com/read/163518/10155214

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