代码搜索:isalpha
找到约 503 项符合「isalpha」的源代码
代码结果 503
www.eeworm.com/read/286264/8778222
isalpha
www.eeworm.com/read/190618/8439517
c isalpha.c
/*************************************************************
* File: lib/isalpha.c
* Purpose: Part of C runtime library
* Author: Phil Bunce (pjb@carmel.com)
* Revision History:
* 970304 Start
www.eeworm.com/read/287172/8713197
c isalpha.c
www.eeworm.com/read/287172/8713230
mac isalpha.mac
INCLUDE PROLOG.H
_CC1:
PUBLIC _isalpha
_isalpha:
MOV BX,2
ADD BX,SP
MOV BX,[BX]
XCHG DX,BX
MOV BX,122
CMP DX,BX
MOV BX,CX
JG $+3
INC BX
OR BX,BX
JNZ $+5
JMP _CC3
MOV BX,
www.eeworm.com/read/286264/8778217
opt isalpha.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/286264/8778238
plg isalpha.plg
礦ision2 Build Log
Project:
F:\单片机的C语言光盘\exam\ch11\isalpha\isalpha.uv2
Project File Date: 09/28/2005
Output:
Build target 'Target 1'
compiling
www.eeworm.com/read/184984/9061874
c isalpha.c
www.eeworm.com/read/183756/9142099
c isalpha.c
/* isalpha.c - character classification and conversion macros */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01e,03mar93,jdi more documentation c
www.eeworm.com/read/376197/9325461
c isalpha.c
www.eeworm.com/read/376044/9334764
m isalpha.m
function out=isalpha
out=0;
if isunix
[a,b]=system('uname -a | grep alpha');
if ~isempty(strfind(lower(b),'alpha')), out=1; end
end