代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/130553/14186827
c strsort.c
/*
** strsort() -- Shell sort an array of string pointers via strcmp()
** public domain by Ray Gardner Denver, CO 12/88
*/
#include
#include
void strsort (char **
www.eeworm.com/read/128030/14318710
cpp ptrto.cpp
// ptrto.cpp
// other access using pointers
#include
using namespace std;
int main()
{
int var1, var2; //two integer variables
int* ptr; //pointer
www.eeworm.com/read/223007/14664907
c s_srch1.c
/*
** Given a pointer to a NULL-terminated list of pointers, search
** the strings in the list for a particular character.
*/
#include
#define TRUE 1
#define FALSE 0
int
find_c
www.eeworm.com/read/221836/14718603
c csvparse.c
/* csvparse.c :
*
* Parse a *.CSV format record
*/
#include "quotes.h"
/*
* Internal buffer pointers :
*/
static char *sbuf = NULL;
static unsigned maxlen = 0;
static char *aptr = NULL;
/*
* R
www.eeworm.com/read/221578/14736966
h globalvars.h
#include "all.h"
/* Global variables: configuration document pointers */
extern xmlDocPtr ctoken;
extern xmlDocPtr ctab;
/* authdata: byte array holding masterkey */
extern u_int8_t* authdata;
/* On
www.eeworm.com/read/117743/14906337
h jbstree.h
//JBSTree.h Begin
/* Jon Martin:Jon's BinaryStringTree:Recursive and Dynamic Data Stucture for Strings:I modified this thing to return pointers to tree nodes which makes it much more useful for the m
www.eeworm.com/read/206156/15299364
h comp.h
/*
Define storage allocation parameters
FAR_TABLES dynamically allocates dictionary using far pointers
SPLIT_TABLES allows a dictionary size over 32K
*/
#define FAR_TA
www.eeworm.com/read/470720/1447042
c ptrmem3.c
// Build don't link:
// GROUPS passed pointers-to-members
template class TemplA {
T t;
};
template class TemplB {
public:
typedef void (T::*TClassMethod)();
private:
www.eeworm.com/read/470720/1447632
c 900519_06.c
// g++ 1.37.1 bug 900519_06
// g++ allows the type given in an invocation of operator new to be a
// reference type.
// Since pointers to reference types are illegal, the required return type
// fro
www.eeworm.com/read/470720/1447642
c 900215_02.c
// g++ 1.36.1 bug 900215_02
// g++ allows global objects (which happen to be pointers to members of some
// class X) to be dereferenced without prefix object specifications within
// member function