代码搜索:数字时钟程序
找到约 10,000 项符合「数字时钟程序」的源代码
代码结果 10,000
www.eeworm.com/read/205856/15305391
txt 源程序4.txt
// errhand.cpp
#include
#include
#include
#include "errhand.h"
void fatal_error(char* fmt, ...)
{
va_list argptr;
va_start(argptr, fmt);
printf("Fatal
www.eeworm.com/read/205856/15305392
txt 源程序2.txt
// bitio.cpp
#include
#include
#include "bitio.h"
#include "errhand.h"
#define PACIFIER_COUNT 2047
BIT_FILE* OpenOutputBitFile( char* name )
{
BIT_FILE* bit_file;
www.eeworm.com/read/205847/15305584
txt 源程序6.txt
// wm_bitio.h
#ifndef _WIX_WM_BITIO_H_01_
#define _WIX_WM_BITIO_H_01_
// 取log2(n)的upper_bound
int UpperLog2(int n);
// 取log2(n)的lower_bound
int LowerLog2(int n);
// 将位指针*piByte(字节偏移),
www.eeworm.com/read/205847/15305585
txt 源程序1.txt
// bitio.cpp
#include
#include
#include "bitio.h"
#include "errhand.h"
#define PACIFIER_COUNT 2047
BIT_FILE* OpenOutputBitFile( char* name )
{
BIT_FILE* bit_file;
www.eeworm.com/read/205847/15305586
txt 源程序4.txt
// errhand.h
#ifndef _ERRHAND_H_DCC_001
#define _ERRHAND_H_DCC_001
void fatal_error(char * fmt, ...);
#endif // _ERRHAND_H_DCC_001
www.eeworm.com/read/205847/15305588
txt 源程序5.txt
/////////////////////////////////////////////////////////
// 取log2(n)的upper_bound
int UpperLog2(int n)
{
int i = 0;
if (n > 0)
{
int m = 1;
while(1)
{
if (m >= n)
return i
www.eeworm.com/read/205847/15305589
txt 源程序2.txt
// bitio.h
#ifndef _WIX_BITIO_H_01
#define _WIX_BITIO_H_01
#include
typedef struct bit_file
{
FILE* file;
unsigned char mask;
int rack;
int pacifier_counter; // 工作计数
www.eeworm.com/read/205527/15314309
exe 串口调试程序.exe
www.eeworm.com/read/704/2710