代码搜索:byte
找到约 10,000 项符合「byte」的源代码
代码结果 10,000
www.eeworm.com/read/153734/12010232
hex bcd_byte.hex
:10000000C8943030E4029407C8943030E402940776
:10001000C44822F8540F24F650022407243AC8C4D6
:0B002000540F24F650022407243A225B
:00000001FF
www.eeworm.com/read/153734/12010235
asm bcd_byte.asm
;#############################################################################
;# VAULT INFORMATION SERVICES - 8052 CODE EXAMPLE #
;# (C) Copyright 1997 by Vau
www.eeworm.com/read/153731/12010723
zip bcd_byte.zip
www.eeworm.com/read/233341/14157465
htm byte mode.htm
Warp Nine Engineering - The IEEE 1284 Experts - IEEE
www.eeworm.com/read/130385/14196083
c byte_string.c
/* byte_string routines
* Ben Lynn
*/
/*
Copyright (C) 2001 Benjamin Lynn (blynn@cs.stanford.edu)
See LICENSE for license
*/
#include
#include
#include "byte_string.h"
#incl
www.eeworm.com/read/130385/14196143
h byte_string.h
/* byte_string.h
* Ben Lynn
*/
/*
Copyright (C) 2001 Benjamin Lynn (blynn@cs.stanford.edu)
See LICENSE for license
*/
#ifndef BYTE_STRING_H
#define BYTE_STRING_H
#include
struct byte_s
www.eeworm.com/read/226770/14452668
c byte_diff.c
/* Public domain. */
#include "byte.h"
int byte_diff(s,n,t)
register char *s;
register unsigned int n;
register char *t;
{
for (;;) {
if (!n) return 0; if (*s != *t) break; ++s; ++t; --n;
www.eeworm.com/read/226770/14452762
c byte_copy.c
/* Public domain. */
#include "byte.h"
void byte_copy(to,n,from)
register char *to;
register unsigned int n;
register char *from;
{
for (;;) {
if (!n) return; *to++ = *from++; --n;
if (!n)
www.eeworm.com/read/226770/14452837
c byte_rchr.c
/* Public domain. */
#include "byte.h"
unsigned int byte_rchr(s,n,c)
char *s;
register unsigned int n;
int c;
{
register char ch;
register char *t;
register char *u;
ch = c;
t = s;
u =