|
-
Oct 3rd, 2000, 11:42 AM
#1
Thread Starter
New Member
I need some help for string manipulation (without CString class).
I know basics of C++, but never used strings.
For example I need a function for appending a backslash after a directory
name:
VOID WINAPI AppendSlash(LPTSTR *lpFileName)
{
len = lstrlen(*lpFileName) + 1;
if (len > 0 && szBuffer[len] != '\\')
{
// Modify string by adding a backsslash
}
}
Thanks,
Jef Driesen
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|