代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/452123/7447029
h rtc.h
/*****************************************************************************
* rtc.h: Header file for Philips LPC214x Family Microprocessors
*
* Copyright(C) 2006, Philips Semiconductor
www.eeworm.com/read/451979/7452727
pas sconst.pas
unit sConst;
{$I sDefs.inc}
{.$DEFINE LOGGED}
interface
uses Messages, Graphics, Windows, comctrls, ExtCtrls, controls, classes, Buttons,
StdCtrls, Consts, Dialogs;
{$IFNDEF NOTFORHELP}
www.eeworm.com/read/451610/7461187
h diskio.h
/*-----------------------------------------------------------------------
/ Low level disk interface modlue include file R0.05 (C)ChaN, 2007
/----------------------------------------------------
www.eeworm.com/read/451610/7461193
c monitor.c
#include
#include "monitor.h"
int xatoi (char **str, long *res)
{
DWORD val;
BYTE c, radix, s = 0;
while ((c = **str) == ' ') (*str)++;
if (c == '-') {
s = 1;
c =
www.eeworm.com/read/451610/7461205
h ff.h
/*--------------------------------------------------------------------------/
/ FatFs - FAT file system module include file R0.06 (C)ChaN, 2008
/--------------------------------------------
www.eeworm.com/read/451609/7461221
c monitor.c
#include
#include "monitor.h"
int xatoi (char **str, long *res)
{
DWORD val;
BYTE c, radix, s = 0;
while ((c = **str) == ' ') (*str)++;
if (c == '-') {
s = 1;
c =
www.eeworm.com/read/451384/7466308
c display_test.c
#include
#define BYTE unsigned char
#define WORD unsigned int
const BYTE DATA_7SEG[ ] ={0xc0,0xF9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};
BYTE led[4],min,sec,dms;
/
www.eeworm.com/read/451085/7472495
cpp comm.cpp
#include
#include "comm.h"
#include
int IsAllSame(const unsigned char* abIn,int nLength)
{
for(int i=1;i
www.eeworm.com/read/450999/7473876
pas rostr2.pas
var s:string;
i:byte;
begin
write('s=');
readln(s);
for i := 1 to length(s) do
write(copy(s,1,i), ' ');
writeln;
for i := length(s) downto 1 do
write(copy(s,length(s)-i+1,i),' ');
www.eeworm.com/read/450999/7473913
pas rostr5.pas
var s:string;
c:char;
i,n:byte;
begin
write('s=');readln(s);
write('c=');readln(c);
n:=0;
for i := 1 to length(s) do
if upcase(s[i])=upcase(c) then inc(n);
write(n);
end.