代码搜索:Digit
找到约 4,689 项符合「Digit」的源代码
代码结果 4,689
www.eeworm.com/read/189298/8477342
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh
www.eeworm.com/read/178315/9408679
l tokens.l
/* Hey Emacs, this is code for lex to eat, treat it as -*-C-*- code
ALPHA [a-zA-Z]
ID {ALPHA}+
ARG [^=\n\r]+
ID {ALPHA}({ALPHA}|{DIGIT})*
ARG "=" .*
N
www.eeworm.com/read/176043/9521097
java cffc_1.java
import java.io.*;
/*********************
* keyword--( k , _ )--1
* digit----{ d , _ )--2
* end------( e , _ )--3
* op-------( o , _ )--4
* var------( v , _ )--0
*********************/
www.eeworm.com/read/444799/7606455
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh
www.eeworm.com/read/444091/7618108
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh
www.eeworm.com/read/436521/7768639
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh
www.eeworm.com/read/333627/12668355
c doc2rtf.c
/*
* doc2rtf.c -- program to convert Gnuplot .DOC format to MS windows
* help (.rtf) format.
*
* This involves stripping all lines with a leading digit or
* a leading @, #, or %.
* Modifi
www.eeworm.com/read/241421/13145045
h og.h
#ifndef __og_h__
#define __og_h__
extern unsigned char zh[][32];
extern unsigned char xu[];
extern unsigned char OG_Digit[][16];
/*
**************************************************************
www.eeworm.com/read/138638/13227450
c atoi.c
/*
** Convert a string of digits to an integer.
*/
int
ascii_to_integer( char *string )
{
int value;
int digit;
value = 0;
/*
** Convert digits of the string one by one.
*/
wh