代码搜索:adding
找到约 4,236 项符合「adding」的源代码
代码结果 4,236
www.eeworm.com/read/475965/1374198
c put1.c
/* put1.c 枛 prints a string without adding \n */
#include
void put1(const char * string) /* string not altered */
{
while (*string != '\0')
putchar(*string++);
}
www.eeworm.com/read/459490/1569241
tracticketscustomfields
= Custom Ticket Fields =
Trac supports adding custom, user-defined fields to the ticket module. Using custom fields, you can add typed, site-specific properties to tickets.
== Configuration ==
Config
www.eeworm.com/read/455960/1608360
txt game_tunes.txt
// These commands are run at music load time
// You can load your own custom tunes simply by adding/editing
// this file. The game selects and plays a random tune from given oggs.
// Only Ogg Vorbi
www.eeworm.com/read/242733/4536495
h heap.h
// Copyright (c) 1999-2000 Microsoft Corporation. All rights reserved.
/* Adding or removing entries requires changes to the structures */
/* in heap.c */
#if defined(x86) && (PAGE_SIZE == 4096)
www.eeworm.com/read/240162/4580812
c conv5.c
// { dg-do assemble }
// { dg-options "" }
// Based on bug report by Thomas Kunert
int foo();
const int (*bar)() = foo; // { dg-error "" } adding const
www.eeworm.com/read/233448/4673632
c conv5.c
// { dg-do assemble }
// { dg-options "" }
// Based on bug report by Thomas Kunert
int foo();
const int (*bar)() = foo; // { dg-error "" } adding const
www.eeworm.com/read/224327/4804881
h distnetlib.h
/* distNetLib.h - distribted objects network layer header file (VxFusion) */
/* Copyright 1999 Wind River Systems, Inc. */
/*
modification history
--------------------
01c,24may99,drm adding vxfusi
www.eeworm.com/read/224327/4804884
h distnamelib.h
/* distNameLib.h - distributed name database header (VxFusion) */
/* Copyright 1999 Wind River Systems, Inc. */
/*
modification history
--------------------
01c,24may99,drm adding vxfusion prefix t
www.eeworm.com/read/218586/4857512
sql patch-rc_ip.sql
-- Adding the rc_ip field for logging of IP addresses in recentchanges
ALTER TABLE /*$wgDBprefix*/recentchanges
ADD rc_ip char(15) NOT NULL default '',
ADD INDEX rc_ip (rc_ip);
www.eeworm.com/read/218586/4857563
sql patch-math.sql
-- Creates table math used for caching TeX blocks. Needs to be run
-- on old installations when adding TeX support (2002-12-26)
-- Or, TeX can be disabled via $wgUseTeX=false in LocalSettings.php
--