代码搜索:usage
找到约 10,000 项符合「usage」的源代码
代码结果 10,000
www.eeworm.com/read/190618/8440322
c prfp.c
/*************************************************************
* File: tools/prfp.c
* Purpose: print floating-point values
* Author: Phil Bunce (pjb@carmel.com)
* Revision History:
* 970518 Start
www.eeworm.com/read/190618/8440356
c gens4rec.c
#include
/*
** This program is useful for adding symbols to a third party vendor's
** S-record file. You can probably extract the necessary symbol
** information from the linker's map file
www.eeworm.com/read/190267/8446010
c main.c
#include
#include
int factorial (int n);
int main (int argc, char **argv)
{
int n;
if (argc < 2) {
printf ("Usage: %s n\n", argv [0]);
return
www.eeworm.com/read/390183/8480169
sh makelib.sh
#! /bin/sh
[ $1 ] || {
echo "Usage: $0 [...]"
exit 1
}
libname=$1; shift
rdflib c $libname
for f in $*; do
rdflib a $libname $f $f
done
www.eeworm.com/read/189219/8484324
c main.c
#include "call.h"
/* define global variables */
char escapec = '~';
char *src;
char *dst;
static void usage(char *);
int
main(int argc, char *argv[])
{
int c, remfd, debug;
char args[MAXLI
www.eeworm.com/read/189219/8484646
c main.c
#include "lprps.h"
static void usage(void);
int
main(int argc, char *argv[])
{
int c;
log_open("lprps", LOG_PID, LOG_LPR);
opterr = 0; /* don't want getopt() writing to stderr */
while ( (c
www.eeworm.com/read/189078/8490728
txt 统计文章中字母出现次数.txt
统计文章中字母出现次数[原创]
我把代码简化了,有兴趣的朋友可以在此基础上进行修改。
#define N 80
#i nclude
void count(char text[],int num[])
{
int t;
for(t=0;t
www.eeworm.com/read/189063/8491776
m l.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = l(x)
%
%
out = log(x);
www.eeworm.com/read/189063/8491801
m p.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = p(u)
%
%
out=exp(u);
www.eeworm.com/read/189063/8491835
m e.m
% routine to get the square root of a number
% usage: via tree structured GA
function out = e(x)
out=exp(x);