代码搜索:array

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

代码结果 10,000
www.eeworm.com/read/336825/3347438

h array.h

/* $Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $ */ #ifndef ARRAY_INCLUDED #define ARRAY_INCLUDED #define T Array_T typedef struct T *T; extern T Array_new (int length,
www.eeworm.com/read/336825/3347448

c array.c

static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $"; #include #include #include "assert.h" #include "array.h" #include "arrayrep.h"
www.eeworm.com/read/336825/3347588

h array.h

/* $RCSfile: RCS/array.doc,v $ $Revision: 1.9 $ */ #ifndef ARRAY_INCLUDED #define ARRAY_INCLUDED #define T Array_T typedef struct T *T; extern T Array_new (int length, int size); extern void Array_
www.eeworm.com/read/336825/3347627

c array.c

static char rcsid[] = "$RCSfile: RCS/array.doc,v $ $Revision: 1.9 $"; #include #include #include "assert.h" #include "array.h" #include "arrayrep.h" #include "mem.h" #define T Ar
www.eeworm.com/read/336825/3347824

c array.c

#include #include #include "assert.h" #include "array.h" #include "arrayrep.h" #include "mem.h" #define T Array_T T Array_new(int length, int size) { T array; NEW(array); if (
www.eeworm.com/read/336825/3347911

h array.h

#ifndef ARRAY_INCLUDED #define ARRAY_INCLUDED #define T Array_T typedef struct T *T; extern T Array_new(int length, int size); extern void Array_free(T *array); extern int Array_length(T array); exter
www.eeworm.com/read/334276/3369285

h array.h

#ifndef ARRAY_H #define ARRAY_H #include using std::ostream; using std::cout; using std::endl; template class Array; template ostream&
www.eeworm.com/read/334276/3369286

cpp array.cpp

#include #include "Array.h" template const int Array::DefaultArraySize = 12; template void Array::init( const elemType
www.eeworm.com/read/334276/3369344

h array.h

#ifndef ARRAY_H #define ARRAY_H // #include #include template class Array; template ostream& operator
www.eeworm.com/read/334276/3369346

c array.c

#ifndef ARRAY_C #define ARRAY_C #include #include "Array.h" template const int Array::DefaultArraySize = 12; template void Array