代码搜索:uint
找到约 10,000 项符合「uint」的源代码
代码结果 10,000
www.eeworm.com/read/368821/9676852
c vic.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/171718/9739854
h gmo.h
/* Description of GNU message catalog format: general file layout.
Copyright (C) 1995, 1997, 2000-2002, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute i
www.eeworm.com/read/415365/11075156
c udisk.c
//#include "stdafx.h"
//#include "CommPort.h"
//extern CCommPort Comm;
//#define SendResponse(buff,len) Comm.SendData(buff, NULL, len, 10000, 1, 0, FALSE); //发送数据
#include "config.h"
#includ
www.eeworm.com/read/411508/11239981
h sd_cmd.h
/***************************** C HEADER FILE ********************************
**
** Project: FlashFile
** Filename: SD_CMD.H
** Version: 3.0
** Date: March 29, 2006
**
***
www.eeworm.com/read/411028/11260435
h gmo.h
/* Description of GNU message catalog format: general file layout.
Copyright (C) 1995, 1997, 2000-2002, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute i
www.eeworm.com/read/249415/12507351
cpp summation.cpp
/******************************************************************************
Module: Summation.cpp
Notices: Copyright (c) 2000 Jeffrey Richter
**************************************************
www.eeworm.com/read/335246/12544326
c host-multicast.c
//--------------------------------------------------------------------------
// IP Stack Multicast host demo
//--------------------------------------------------------------------------
#include
www.eeworm.com/read/146808/12609982
c ide_ata.c
/************************************************************************
// ide_ata.c
//
// Modification History:
// $Id: ide_ata.c,v 1.18 2005/10/05 09:38:06 raphael Exp $
//
www.eeworm.com/read/334325/12611983
h asf.h
#ifndef __ASF_H
#define __ASF_H
//#include "config.h" /* for WORDS_BIGENDIAN */
#include
#include "bswap.h"
#ifndef MIN
#define MIN(a,b) (((a)
www.eeworm.com/read/134186/14002274
c misc.c
#include "common.h"
int strncmp(char *p, char *q, int n)
{
while(n--) {
if (*p++!=*q++) return 1;
}
return 0;
}
int strnlen(char *p,uint max)
{
uint l=0;
while (*p++) l++