代码搜索:usage

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

代码结果 10,000
www.eeworm.com/read/481033/6656008

c env_attr.c

/**************************************************************************** * * * cryptlib Envelope Attribute Routines * * Copyright Peter Gutmann 1996-2007 *
www.eeworm.com/read/479824/6680801

h usagesinfo.h

#include "Hid.hpp" #include "HidUsage.hpp" void UsageAndUsagePageText(TUsage UsagePage, TUsage Usage, AnsiString *UsagePageText, AnsiString *UsageText);
www.eeworm.com/read/479824/6680817

h usagesinfo.h

#include "Hid.hpp" #include "HidUsage.hpp" void UsageAndUsagePageText(TUsage UsagePage, TUsage Usage, AnsiString *UsagePageText, AnsiString *UsageText);
www.eeworm.com/read/479088/6699326

m echobackcall.m

% % load gdata and calls for echoback function. % Usage: echoback(rho,theta,[x position;y position;amplitude]); % load gdata echoback(rho,theta,[1;1;1]);
www.eeworm.com/read/478934/6708242

c bootpcmd.c

/*************************************************/ /* Center for Information Technology Integration */ /* The University of Michigan */ /*
www.eeworm.com/read/477671/6730750

cpp progvals.cpp

//: C07:ProgVals.cpp {O} // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc. // Available at www.BruceEckel.com. #include "ProgVals.h" usin
www.eeworm.com/read/476941/6743251

c rm.c

#include "types.h" #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { int i; if(argc < 2){ printf(2, "Usage: rm files...\n"); exit(); } for(i = 1; i < argc; i++)
www.eeworm.com/read/476941/6743261

c ln.c

#include "types.h" #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { if(argc != 3){ printf(2, "Usage: ln old new\n"); exit(); } if(link(argv[1], argv[2]) < 0) p
www.eeworm.com/read/476941/6743285

c kill.c

#include "types.h" #include "stat.h" #include "user.h" int main(int argc, char **argv) { int i; if(argc < 1){ printf(2, "usage: kill pid...\n"); exit(); } for(i=1; i
www.eeworm.com/read/476941/6743300

c mkdir.c

#include "types.h" #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { int i; if(argc < 2){ printf(2, "Usage: mkdir files...\n"); exit(); } for(i = 1; i < argc; i