代码搜索:DEV
找到约 10,000 项符合「DEV」的源代码
代码结果 10,000
www.eeworm.com/read/296774/7114422
fixincludes
#! /bin/sh
# Install modified versions of certain ANSI-incompatible system header files
# which are fixed to work correctly with ANSI C
# and placed in a directory that GNU C will search.
# See READM
www.eeworm.com/read/381973/7130333
simple_load
#!/bin/sh
module="simple"
device="simple"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/345794/7139591
c eth1394.c
/*
* eth1394.c -- Ethernet driver for Linux IEEE-1394 Subsystem
*
* Copyright (C) 2001-2003 Ben Collins
* 2000 Bonin Franck
* 2
www.eeworm.com/read/464279/7166900
delperson
#!/bin/sh
# Name: delperson
# Desc: del a person addressbook
# Args: $1 -> name of person to delete
# get the helper functions
. ../ch21/libTYSP.sh
PATH=/bin:/usr/bin
# check that a name is
www.eeworm.com/read/464279/7166944
mymkdir
#!/bin/sh
# Chapter 14 - Answer to Question 1
mymkdir() {
if [ $# -lt 1 ] ; then
echo "ERROR: Insufficient arguments." >&2
return 1
fi
mkdir -p "$1" > /dev/null 2>&1
www.eeworm.com/read/463857/7174579
c synaptics.c
/*
* Synaptics TouchPad PS/2 mouse driver
*
* 2003 Dmitry Torokhov
* Added support for pass-through port. Special thanks to Peter Berg Larsen
* for explaining various Syn
www.eeworm.com/read/463857/7174590
c psmouse-base.c
/*
* PS/2 mouse driver
*
* Copyright (c) 1999-2002 Vojtech Pavlik
* Copyright (c) 2003-2004 Dmitry Torokhov
*/
/*
* This program is free software; you can redistribute it and/or modify it
* un
www.eeworm.com/read/463854/7174610
c xtkbd.c
/*
* $Id: xtkbd.c,v 1.11 2001/09/25 10:12:07 vojtech Exp $
*
* Copyright (c) 1999-2001 Vojtech Pavlik
*/
/*
* XT keyboard driver for Linux
*/
/*
* This program is free software; you can redi
www.eeworm.com/read/463854/7174614
c newtonkbd.c
/*
* Copyright (c) 2000 Justin Cormack
*/
/*
* Newton keyboard driver for Linux
*/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge