Copies at most len characters from src into dst then append NULL terminating character.
- Parameters:
-
| dst | a pointer of the string to be copied |
| dstsize | size of dst |
| src | a pointer of source string |
| nbytes | bytes to copy |
- Returns:
- always returns a pointer of dst
- Note:
- The dst string will be always terminated by NULL character. (bytes that follow a null byte are not copied)
Definition at line 256 of file qString.c.