代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/169894/9834047
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/169894/9834061
o utils.o
www.eeworm.com/read/169894/9834113
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/169793/9837930
h utils.h
/******************************************************>
* Copyright (c) 2001 Microsoft Corporation.
* All rights reserved.
*
* Copyright (c) 2005 enum.at
* All rights reserved.
*
* @Ab
www.eeworm.com/read/169793/9837948
cpp utils.cpp
/******************************************************>
* Copyright (c) 2001 Microsoft Corporation.
* All rights reserved.
*
* Copyright (c) 2005 enum.at
* All rights reserved.
*
* @Ab
www.eeworm.com/read/169651/9847914
c utils.c
/*
------------------------------------------------------------------
Copyright
Sun Microsystems, Inc.
Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc. All Rights
Reserved.
Permissi
www.eeworm.com/read/169651/9847970
h utils.h
/*
------------------------------------------------------------------
Copyright
Sun Microsystems, Inc.
Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc. All Rights
Reserved.
Permissi
www.eeworm.com/read/169614/9849164
html utils.html
ELKS Utilities
Compact Utilities for use in ELKS
This is the home page for my re-write of some of the utilities fo
www.eeworm.com/read/365713/9850060
c utils.c
/* Functions from hack's utils library.
Copyright (C) 1989-1991 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms
www.eeworm.com/read/365220/9872286