代码搜索结果
找到约 10,000 项符合
Y 的代码
y.gif
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|24 Dec 2002 11:56:20 -0000
vti_extenderversion:SR|5.0.2.2623
vti_author:SR|shocat
vti_modifiedby:SR|shocat
vti_timecreated:TR|24 Dec 2002 11:56:20
plural.y
%{
/* Expression parsing for plural form selection.
Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Written by Ulrich Drepper , 2000.
This program is free softwar
y.c
int jc(int n)
{
static int s=1;
if(n==3)
return n;
return s *= jc(n+1);
}
main()
{
printf("%d", jc(1));
}
parse.y
%{
#define YYPARSER /* distinguishes Yacc output from other code files */
#include "globals.h"
#include "util.h"
#include "scan.h"
#include "parse.h"
static char * savedFunName; /* for use
ftpcmd.y
/*
* Copyright (c) 1985, 1988, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modificatio