代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/445858/7589183
log cc_build_debug.log
---------------------------- FBTC6713.pjt - Debug ----------------------------
"c:\ti\c6000\cgtools\bin\cl6x" -q -as -o3 -mi1 -ml3 -@"Debug.lkf" "FBCmd.c"
"FBCmd.c", line 88: warning: conversion f
www.eeworm.com/read/445796/7590063
pas sqlite3lib.pas
Unit SQLite3Lib;
Interface
{$I Sqlite.inc}
Uses
Sqlite3Types;
Var
SQLite3_DllName: AnsiString = 'Sqlite3.dll';
SQLite3_DllHandle: THandle;
{$IFDEF UseSQLiteCrypt}
SQLite3_Ke
www.eeworm.com/read/445796/7590208
inc sqlite3obj.inc
Const
__Days: Array[0..12 - 1] Of integer = (
31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
);
__YDays: Array[0..13 - 1] Of integer = (
0, 31, 59, 90, 120, 151, 181, 212, 243,
www.eeworm.com/read/445796/7590209
inc sqlite3obj.inc
Const
__Days: Array[0..12 - 1] Of integer = (
31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
);
__YDays: Array[0..13 - 1] Of integer = (
0, 31, 59, 90, 120, 151, 181, 212, 243,
www.eeworm.com/read/445526/7594676
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/445230/7597692
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
www.eeworm.com/read/445230/7597781
c brk.c
#include
#include
void main(void)
{
char *ptr;
printf("Starting heap available %u\n", coreleft());
ptr = malloc(1); // Get pointer to current break v