搜索资源列表
strlen
- 字符串函数strlen的优化实现。利用常数7EFEFEFFH和81010100H可以在32位系统上提高运行效率。
strlen
- 设计函数STRLEN,模拟标准函数strlen
ch4
- Status StrAssign(SString T,char *chars) { // 生成一个其值等于chars的串T int i if(strlen(chars)>MAXSTRLEN) return ERROR else { T[0]=strlen(chars) for(i=1 i<=T[0] i++) T[i]=*(chars+i-1) return OK } }
chongzauhanshu
- 定义Name类的重载赋值函数。#include<iostream.h> #include<string.h> class Name { public : Name ( char *pN ) Name( Name & ) Name& operator=( Name& ) ~ Name() protected : char *pName int size } Name::Name (
formulaC++20080625
- 该组件可用编写字符串和数字运算处理脚本,供运行时调用获取执行结果 1、组件调用的方式可以参考 main.cpp 2、脚本的编写可以参考 debug/my.cfg 3、可调用系统函数有 atof: 将字符串转换为浮点数 ceil: floor: abs: index: strcmp: substr: strlen: trim: strstr: split: replace:字符串替换函数 printf:
c_prog1
- 一些常用的C语言源代码。包括磁盘格式、常用函数如abs、sin、strlen等;以及输入输出格式的制定。-some common C language source code. Disk format, commonly used functions such as the abs, sin, strlen; Input and output format and setting.
post源代码
- post源代码 please post For Who need /post please. Code: if(!memcmp(lpChat->chatmsg,"/post",5)) { if(config.PSTCMD.is == 0) { MsgOutput(aIndex,"[Post]Command is disabled by Administrator."); return; } if(config.PSTCMD.Cost > gOb
rapidxml-1.13-with-tests
- RapidXml 试图成为最快的 XML DOM 解析工具包,同时保证解析结果的可用性、可移植性以及与 W3C 标准的兼容性。RapidXml 使用 C++ 编写,因此在操作同一数据时,其解析速度接近于 strlen() 函数。 整个解析工具包包含在一个头文件中,所以使用时不用编译也不用连接。要想使用 RapidXml 只要包含 rapidxml.hpp 即可,当然如果要用附加功能(如打印函数),你可以包含 rapidxml_print.hpp 文件。 RapidXml 为采用C++语言
shell
- #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char *
strlen
- 标准库中strlen高效实现的源码测试程序-Standard library strlen efficient implementation of the source test procedures
BF533_SST_Flash_Driver
- 2009.02.13 (Chiron.ylq) --- --- --- --- --- 该工程用于Analog Devices VisualDSP++ V5.0开发环境下,烧写Silicon Storage Technology公司SST39VF512/010/020/040系列Flash的Program Load Driver。 1. 文件结构 SST39VFXXX.dlb SST39VF512/010/020/040 Flash操作驱动 BF
strlen
- examples of getting sring len using c++ and asm code
Injector
- BOOL InjectDLL(DWORD ProcessID) { HANDLE Proc char buf[50]={0} LPVOID RemoteString, LoadLibAddy if(!ProcessID) return false Proc = OpenProcess(CREATE_THREAD_ACCESS, FALSE, ProcessID) if(!Proc) { sprintf
strcat-strcpy-strcmp-strlen(hanshuyuanxing)
- strcat,strcpy,strcmp,strlen函数原型,本人在VC6.0下调试通过的例子。-strcat, strcpy, strcmp, strlen function prototype, I have to debug through the VC6.0 example.
socket
- tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servA
strlen-source-code
- 用strlen读取文件字节数程序的源程序-s source code of Read the file number of bytes of the program
strlen
- Check strlen function call.
strlen
- function strlen and strcpy and strcut in c++ and c for use
strlen
- strlen.S: Sparc optimized strlen code.
15180110052 马卓 逆向上机1
- 用汇编实现C语言中strlen strcat strcmp等函数的功能(The function of strlen strcat StrCmp and other functions in C language)