代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/198849/7907350

c gd_io_ss.c

/* * io_ss.c * * Implements the Source/Sink interface. * * As will all I/O modules, most functions are for local use only (called * via function pointers in the I/O context). *
www.eeworm.com/read/198849/7907358

c gd_io_file.c

/* * io_file.c * * Implements the file interface. * * As will all I/O modules, most functions are for local use only (called * via function pointers in the I/O context). * * M
www.eeworm.com/read/146126/12668311

cpp unionfindwithchains.cpp

// union/find using chains and size info // integer pointers used #include #include "equivNode.h" using namespace std; equivNode *node; // array of nodes int n; // num
www.eeworm.com/read/333254/12693062

cpp swaps.cpp

// swaps.cpp -- swapping with references and with pointers #include void swapr(int & a, int & b); // a, b are aliases for ints void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/142771/12922785

cpp list.cpp

/* list.cpp - Robert Ollington - 1/8/05 (based upon Mike Cameron Jones' C implementation for KXA251) This code illustrates the use of pointers to implement a linked list, with a
www.eeworm.com/read/141772/12985453

inc dos.inc

; DOS Interface Macros - Version 1.3 - for Microsoft Macro Assembler 6.1 ; (C) Copyright Microsoft Corporation, 1987, 1988, 1989, 1990, 1993 ; Typedefs for testing pointers NPVOID TYPEDEF NEAR P
www.eeworm.com/read/141545/13002040

cpp handle_exception.cpp

#include #define OUR_EXCEPTION 0xE0000001 LONG WINAPI OurUnhandledExceptionFilter(LPEXCEPTION_POINTERS lpExceptionData) { EXCEPTION_RECORD *ExceptionRecord = lpExceptionData-
www.eeworm.com/read/136959/13351074

c strsort.c

/* ** strsort() -- Shell sort an array of string pointers via strcmp() ** Written in ANSI C and optimized for size under Borland TC and BC++. ** ** Public domain by Raymond Gardner 12/05/91 :-) *
www.eeworm.com/read/319883/13440464

cpp prog9_05.cpp

// Program 9.5 Exercising pointers to functions #include using std::cout; using std::endl; long sum(long a, long b); // Function prototype long product(long a, long b);
www.eeworm.com/read/312908/13601792

inc dos.inc

; DOS Interface Macros - Version 1.3 - for Microsoft Macro Assembler 6.1 ; (C) Copyright Microsoft Corporation, 1987, 1988, 1989, 1990, 1993 ; Typedefs for testing pointers NPVOID TYPEDEF NEAR P