代码搜索:MISC
找到约 10,000 项符合「MISC」的源代码
代码结果 10,000
www.eeworm.com/read/160757/10501256
h misc.h
#ifndef _MISC_H_
#define _MISC_H_
/* Copy one word once and then copy one byte once. */
#define MEMCPY_PLUS_PLUS(dest, src, n) \
({ \
void *__end = (char *)(dest) + (n); \
while ((lo
www.eeworm.com/read/160757/10501258
c misc.c
#include
#include "misc.h"
char *strdupn(const char *string, unsigned int n)
{
char *res = (char *)malloc((n + 1) * sizeof (char));
if (res)
{
memcpy(res, string, n);
*(res + n) =
www.eeworm.com/read/160757/10501408
h misc.h
www.eeworm.com/read/278864/10501607
h misc.h
/*
* misc.h - miscellaneous interfaces
*
* This file is a part of the SimpleScalar tool suite written by
* Todd M. Austin as a part of the Multiscalar Research Project.
*
* The tool suite is c
www.eeworm.com/read/278864/10501678
c misc.c
/*
* misc.c - miscellaneous routines
*
* This file is a part of the SimpleScalar tool suite written by
* Todd M. Austin as a part of the Multiscalar Research Project.
*
* The tool suite is cur
www.eeworm.com/read/160624/10513369
asm misc.asm
.modeL small, pascal, os_dos
INCLUDE demo.inc
.DATA
_psp PSEG ? ; Segment of PSP
_env PSEG ? ; Segment of environment
www.eeworm.com/read/352754/10515124
c misc.c
/*
* misc.c
*
* This is a collection of several routines from gzip-1.0.3
* adapted for Linux.
*
* malloc by Hannu Savolainen 1993
* puts by Nick Holloway 1993
*/
#include "gzip.h"
www.eeworm.com/read/352754/10517590
c misc.c
/*
* linux/fs/msdos/misc.c
*
* Written 1992,1993 by Werner Almesberger
*/
#include
#include
#include
#include
#include
www.eeworm.com/read/278336/10544429
h misc.h
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE
www.eeworm.com/read/423504/10556039
c misc.c
/*
* misc.c: PKCS#11 combined and misc. functions
*
* Copyright (C) 2001 Timo Ter鋝
*
* This library is free software; you can redistribute it and/or
* modify it under the te