CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - strcpy
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - strcpy - List
[
CSharp
]
memset
DL : 0
memset,memcpy和strcpy-memset, memcpy and htpasswd
Date
: 2008-10-13
Size
: 1.09kb
User
:
zxk
[
Linux-Unix
]
readinifile_H
DL : 0
/* * 读取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\")) */-/ * read INI file functions (C) * File : readinifile.h * Read INI File * char * GetInitKe y ('">, Section, Key) * Return Key =
Date
: 2008-10-13
Size
: 972byte
User
:
eFun
[
Windows Develop
]
ListingFiles
DL : 0
This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
Date
: 2008-10-13
Size
: 29.16kb
User
:
Merc
[
ActiveX/DCOM/ATL
]
SecureCRT
DL : 0
SecureCRT Sample: Converting Deprecated CRT Functions to their _s Counterparts This sample demonstrates how to convert CRT functions which have been deprecated for security reasons to their _s counterparts. It covers the conversion of the following functions: strcpy, strncpy, fopen, _splitpath, sprintf, getenv, strcat, _creat, and itoa. It also demonstrates the use of _set_invalid_parameter_handler, another Secure CRT addition.
Date
: 2008-10-13
Size
: 10.99kb
User
:
徐海峰
[
Windows Develop
]
bugscam
DL : 0
BugScam is a collection of scripts for the commercial debugger IDA Pro (http://www.datarescue.com) that will scan a given binary for problematic uses of certain library functions (e.g. strcpy etc) and generate a nice output file (HTML so far, LaTeX soon). It s release was inspired by the fact that I had libaudit.idc (the \"core\" engine) lying on my harddisk since early 2001, and never thought someone would bother with something this simple -- but now in 2003 one can find commercial products with almost identical functionality on the Web, and as such I decided to release this as OpenSource.
Date
: 2008-10-13
Size
: 19.34kb
User
:
pp
[
Multimedia program
]
chongzauhanshu
DL : 0
定义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 ( char *pN ) { cout <<\" Constructing \" << pN << endl pName = new char[ strlen( pN ) + 1 ] if( pName != 0 ) strcpy( pName,pN ) size = strlen( pN ) }
Date
: 2008-10-13
Size
: 928byte
User
:
伍国
[
Other resource
]
C++
DL : 0
本文关键词: c++ 字符串 函数 char *strcpy(char *s1, const char *s2) 将字符串s2复制到字符串数组s1中,返回s1的值 char *strncpy(char *s1, const char *s2, size_t n) 将字符串s2中最多n个字符复制到字符串数组s1中,返回s1的值
Date
: 2008-10-13
Size
: 2.08kb
User
:
甄子丹
[
JSP
]
C++
DL : 0
本文关键词: c++ 字符串 函数 char *strcpy(char *s1, const char *s2) 将字符串s2复制到字符串数组s1中,返回s1的值 char *strncpy(char *s1, const char *s2, size_t n) 将字符串s2中最多n个字符复制到字符串数组s1中,返回s1的值-This article Keywords: c++ String function char* strcpy (char* s1, const char* s2) will copy the string s2 to string s1 in the array, the value of s1 return char* strncpy (char* s1, const char* s2, size_t n) string s2 to be the most n characters are copied to the array string s1, the return value of s1
Date
: 2025-07-06
Size
: 2kb
User
:
甄子丹
[
Windows Develop
]
strcat-strcpy-strcmp-strlen(hanshuyuanxing)
DL : 0
strcat,strcpy,strcmp,strlen函数原型,本人在VC6.0下调试通过的例子。-strcat, strcpy, strcmp, strlen function prototype, I have to debug through the VC6.0 example.
Date
: 2025-07-06
Size
: 36kb
User
:
刘飞飞
[
Linux-Unix
]
strcpy
DL : 0
这是一个有linux和windows以及我自己的strcpy程序.- This is a linux and windows and my own strcpy program.
Date
: 2025-07-06
Size
: 131kb
User
:
王明明
[
File Operate
]
=strcpy
DL : 0
关于字符串赋值=和strcpy问题 -On the issue of a string assignment = and strcpy
Date
: 2025-07-06
Size
: 11kb
User
:
tian
[
File Operate
]
strcpy
DL : 0
设计一函数StringCopy实现字符串str1拷贝到str2中,(即实现strcpy功能)要求用指针实现,不能用计数器。-Design a function StringCopy realize str1 string copied to the str2, (i.e. realize strcpy function) require a pointer realize, cannot use the counter
Date
: 2025-07-06
Size
: 1kb
User
:
张瑞明
[
OS program
]
strcpy
DL : 0
实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考 -Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
Date
: 2025-07-06
Size
: 8kb
User
:
刘斌
[
Other
]
wordchose
DL : 0
进行自负的匹配,- #include<iostream.h> #include <string> using namespace std class String { private: int size char *chr public: String(char* temp) { size=strlen(temp) chr =new char[size+1] strcpy(chr,temp) } String(){} int Get_Size() { return size } char* Get_Chr() { return chr } String& insert1 ( int pos1, String& str ) String& insert2 ( int pos1, const char* s, int n ) String& erase ( int pos=0, int n =0 ) String& replace1 ( int pos1, int n1, String& str ) String& replace2 ( int pos1, int n1, const char* s, int n2 ) void swap ( String& str ) String& operator+= ( String& str ) String& operator+= ( const char* s ) int find1 ( String& str, int pos = 0 ) const int find2 ( const char* s, int pos=0, int n=0 ) const ~String() { de
Date
: 2025-07-06
Size
: 2kb
User
:
刘欢
[
CSharp
]
strcpy
DL : 0
strcpy函数应用,刚注册第一次上传,试试功能怎样-the strcpy function application, just registered the first upload, try the function how
Date
: 2025-07-06
Size
: 35.53mb
User
:
王大
[
File Operate
]
strcpy
DL : 0
自定义字符串拷贝函数strcpy(),在C-Free和VC环境能够通过-Custom string copy function strcpy () in C-Free and VC environment through
Date
: 2025-07-06
Size
: 83kb
User
:
wang ying
[
Other
]
StrCpy
DL : 0
使用指针实现库函数StrCpy以处理字符串复制功能,并返回指针!-Using pointers to handle string library functions StrCpy copy function, and returns the pointer!
Date
: 2025-07-06
Size
: 1kb
User
:
hahha
[
Embeded-SCM Develop
]
STRCPY
DL : 0
STRCPY的实现与应用 希望对大家由帮助-STRCPY THE SHIXIAN
Date
: 2025-07-06
Size
: 718kb
User
:
songzhenhua
[
ADO-ODBC
]
strcpy
DL : 0
实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考-Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
Date
: 2025-07-06
Size
: 9kb
User
:
hhgzg887che
[
ADO-ODBC
]
strcpy
DL : 0
实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考-Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
Date
: 2025-07-06
Size
: 8kb
User
:
bz7309zhong
«
1
2
3
4
5
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.