代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/198623/7919863

c scan1.c

scanf (p1, p2, p3, p4) int p1, p2, p3, p4; { /* first arg can be a control string, a file id, or -1 */ int ptrs[10], j, ip, flp, k; char *np; /* extern int cin;*/ extern (*_Igetc)(), (*_Iungc)(), c
www.eeworm.com/read/198623/7919872

s tmgc.s

/ tmg tables and global definitions / in addition to these definitions each routine / follows the convention / f = stack frame pointer during parse and translation / g = stack frame end during parse
www.eeworm.com/read/198623/7920820

s getch.s

.globl getchar .globl lookchar .globl w, r, a, l / / / routine to read next character from string / pointer to by r1; character returned in r0 / c-bit set if character not availiable (eof) / / mov ...
www.eeworm.com/read/433394/7933254

pas rc2.pas

{ *************************************************** * A binary compatible RC2 implementation * * written by Dave Barton (davebarton@bigfoot.com) * **************************************
www.eeworm.com/read/398578/7935970

h adt.h

#include #include struct node { long data; struct node *llink; struct node *rlink; node() { data = 0; llink = NULL; rlink = NULL; } }; struct
www.eeworm.com/read/198319/7940618

asm serial.asm

; Serial Communication Library (c)Copyright 2000, Radek Benedikt ; benedikt@lphard.cz, http://benedikt.lphard.cz ; ver. 1.20 -- Radek Benedikt 22-Feb-2002 - RD2/XRAM buffers ; ver. 1.21 -- Radek Bene
www.eeworm.com/read/298612/7949519

s sysppcavware.s

/* sysPpcAVware.s - BSP to vWare interface PowerPC assembly routines */ /* Copyright 1984-2001 Wind River Systems, Inc. */ /* modification history -------------------- 01c,07dec01,kab Declare sy
www.eeworm.com/read/298517/7952938

cce led.cce

Warning[000] D:\NewKeyBoard\led.c 88 : illegal conversion between pointer types Warning[000] D:\NewKeyBoard\led.c 89 : illegal conversion between pointer types Warning[000] D:\NewKeyBoard\led.c 90 :
www.eeworm.com/read/198041/7955740

h param.h

/*! \file param.h \brief EEPROM Parameter Storage Library. */ //***************************************************************************** // // File Name : 'param.h' // Title : EEPROM Paramet
www.eeworm.com/read/298428/7961197

c useaddr.c

#include void main(void) { int a = 1, b = 2; int *i_pointer; // Assign an address i_pointer = &a; // Change the value pointed to by i_pointer to 5 *i_point