代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/242359/13011530
cc utils.cc
// Copyright (C) 2003 salvatore orlando
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public Licens
www.eeworm.com/read/141301/13023829
cc utils.cc
/*
* avarice - The "avarice" program.
* Copyright (C) 2001 Scott Finneran
* Copyright (C) 2002 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify
* i
www.eeworm.com/read/141272/13026139
tcl utils.tcl
# ------------------------------------------------------------------------------
# utils.tcl
# This file is part of Unifix BWidget Toolkit
# $Id: utils.tcl,v 1.5 2002/01/28 21:56:32 patthoyts Exp $
www.eeworm.com/read/141044/13045703
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/141044/13045759
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/141044/13045771
o utils.o
www.eeworm.com/read/140850/13059594
hh utils.hh
/******************************************************************************
File : utils.hh
Date : Wednesday 13th September 2000
Author : Dr Gavin C. Cawley
Descript
www.eeworm.com/read/140706/13065367
c utils.c
/*
* Author: Christopher G. Phillips
* Copyright (C) 1994 All Rights Reserved
*
* NOTICE
*
* Permission to use, copy, modify, and distr
www.eeworm.com/read/140629/13071244
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/140629/13071274