搜索资源列表
readinifile_H
- /* * 读取INI文件的函数(C语言) * File: readinifile.h * Read INI File * char* GetInitKey(FileName, Section, Key) * Return Key=>Value * + [config] * + dbhost=localhost * * strcpy(dbhost,GetInitKey(\"config.ini\", \"config\", \"dbhost\"))
strcpy
- 这是一个有linux和windows以及我自己的strcpy程序.- This is a linux and windows and my own strcpy program.
mystring
- 实现常用Linux C字符串处理函数,如strlen() strcpy() strsep()等-mystring
strfunction
- strcpy、strcmp、strlen的源码实现-Strcpy, STRCMP, the source code of strlen realization
C-call-sprocs-example
- strcpy、strcmp、strlen的源码实现-Strcpy, STRCMP, the source code of strlen realization
unimodem.dll-adapted-for-windows-ce-3.0-systems.r
- BSTR2, Bubble Sort2, Character to integer, CString s into char s. I am posting , Letter count with linked list, MasterString - over 3,000 lines of hardcore string manipluation (classes, structs, functions ) etc, string functions using both user
taoqianzimulu
- linux下如果目录为空目录,则只有.和.这两个也是属于目录类型的本代码使用递归来判断目录及其子目录是否为空目录 /*判断目录是否为空目录*/int IsEmptyDir(char*pszDir){DIR*pstDirp=NULL;struct dirent*pstDirStru=NULL;int ulFileNum=0;int ret=1;char szDir[100];memset(szDir,0,100);pstDirp=opendir(pszDir);if(NULL==pstD
strcpy
- 实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考 -Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
strcpy-700
- we need LOCK_PREFIX since otherwise cmpxchg8b always does the write.
strcpy
- Cloned and hacked for uClibc by Paul Mundt, December 2003.
segmentation
- string.h is not guaranteed to provide strcpy on C++ Builder.
nfnetlink_cttimeout
- string.h is not guaranteed to provide strcpy on C++ Builder.
string
- We had half-optimised memset memcpy, got better versions of those -Added memcmp, strchr, strcpy, strcmp, strlen.
symorder
- define strdup(str)strcpy(malloc(strlen(str) + 1), str Device Driver for linux v2.13.6.
strcpy
- Copy string s2 to s1. s1 must be large enough. return s1.