代码搜索:utils

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

代码结果 10,000
www.eeworm.com/read/280172/10350635

c utils.c

/******************* start of original comments ********************/ /* * Written by Douglas Thomson (1989/1990) * * This source code is released into the public domain. */ /* * Name:
www.eeworm.com/read/425503/10350638

c utils.c

#include "../inc/def.h" #include "../inc/board.h" #include "../inc/utils.h" void memcpy(void *s1, const void *s2, int n) { int i; for (i = 0; i < n; i++) ((char *)(s1))[i] = ((const cha
www.eeworm.com/read/279872/10381725

pas utils.pas

unit Utils; interface uses Windows,winsock, wininet ,TlHelp32, MMSystem,ShellApi,WinSvc; function BorrarArchivo( s : String ): integer; function FindChar(Word: string;char : string):integer ;
www.eeworm.com/read/279872/10381796

dcu utils.dcu

www.eeworm.com/read/424962/10389733

cs utils.cs

// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this sample source code is subject to the terms of the Microsoft // license agreement under which you licensed thi
www.eeworm.com/read/424917/10394110

h utils.h

/** @file This file contains prototypes for miscellaneous utility functions. @author Rob Hess @version 1.0.0-20050829 */ #ifndef UTILS_H #define UTILS_H #include "defs.h" /********
www.eeworm.com/read/424917/10394128

c utils.c

/* utils.c This file contains definitions of miscellaneous utility functions. */ #include "utils.h" #include "defs.h" /***************************** Inline Functions **************************
www.eeworm.com/read/353931/10403814

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 nto
www.eeworm.com/read/353931/10403949

c utils.c

#include "../inc/def.h" #include "../inc/board.h" #include "../inc/utils.h" /*---------------------printf and support routines ---------------------*/ /* print c count times */ void PutRepC
www.eeworm.com/read/353931/10404007

o utils.o