代码搜索:struct

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

代码结果 10,000
www.eeworm.com/read/391748/8380502

c argp-help.c

/* Hierarchial argument parsing help output Copyright (C) 1995-2005, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader .
www.eeworm.com/read/291639/8406350

c~ drv.c~

/* drv.c - Create an input/output character device */ #include #include #include #include /* for -EBUSY */ #include
www.eeworm.com/read/191741/8424775

c bget.c

/* B G E T Buffer allocator Designed and implemented in April of 1972 by John Walker, based on the Case Algol OPRO$ algorithm implemented in 1966. Reimplemented in 1975
www.eeworm.com/read/291333/8424973

h cvtypes.h

/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying,
www.eeworm.com/read/190750/8438630

c rect.c

#include #include #include "assert.h" #include "index.h" #include #include #define BIG_NUM (FLT_MAX/4.0) #define Undefined(x) ((x)->boundary[0]
www.eeworm.com/read/291164/8438864

h formats.h

/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-2001,2005 by Solar Designer */ /* * Supported ciphertext formats management. */ #ifndef _JOHN_FORMATS_H #define
www.eeworm.com/read/190428/8443852

h call.h

/* * Layer Two Tunnelling Protocol Daemon * Copyright (C) 1998 Adtran, Inc. * Copyright (C) 2002 Jeff McAdams * * Mark Spencer * * This software is distributed under the terms * of the GPL, wh
www.eeworm.com/read/189553/8466099

cpp btpr.cpp

# include # include # include enum {FALSE,TRUE,STOP=0}; # define n 2 //2 # define nn (n+n) //4 /* B+Data Structure */ struct ITEM { int key;
www.eeworm.com/read/189553/8466101

cpp sql2.cpp

# include # include # include # include # include # include # include # include # include e
www.eeworm.com/read/290664/8468082

h tree.h

typedef struct AVLTree { int nData; struct AVLTree* pLeft; struct AVLTree* pRight; int nHeight; }AVLTree;