代码搜索:SUBST
找到约 2,350 项符合「SUBST」的源代码
代码结果 2,350
www.eeworm.com/read/288118/8651955
c subst.c
www.eeworm.com/read/429119/8817657
pl subst.pl
use strict;
my $fname = $ARGV[0];
my @prepattern = split(/!!/, $ARGV[1]);
my @pattern = split(/!!/, $ARGV[2]);
my @subst = split(/!!/, $ARGV[3]);
foreach my $f (@prepattern)
{
#print "*$f
www.eeworm.com/read/187102/8855978
test subst.test
#! /bin/sh
# Test that AC_SUBST($1) does something sensible. From Ulrich
# Drepper.
. $srcdir/defs || exit 1
cat >> configure.in
www.eeworm.com/read/378420/9231505
c subst.c
www.eeworm.com/read/376169/9328243
c subst.c
www.eeworm.com/read/366065/9834378
test subst.test
# Commands covered: subst
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors.
www.eeworm.com/read/366065/9834837
n subst.n
'\"
'\" Copyright (c) 1994 The Regents of the University of California.
'\" Copyright (c) 1994-1996 Sun Microsystems, Inc.
'\" Copyright (c) 2001 Donal K. Fellows
'\"
'\" See the file "license.terms"
www.eeworm.com/read/168443/9914043
c subst.c
www.eeworm.com/read/359581/10135097
c subst.c
/* subst.c -- substitute in string */
#include
#define PSQR(x) printf("The square of " #x " is %d.\n",((x)*(x)))
int main(void)
{
int y = 5;
PSQR(y);
PSQR(2 + 4);
www.eeworm.com/read/359367/10153332