Uuencode
From SA-MP Wiki
uuencode
Note: This function name starts with a lowercase letter. |
Description:
Encode a string to an UU-decoded string.
(dest[],const source[],numbytes,maxlength=sizeof dest)
dest[] | The destination string for the encoded stream. |
const source[] | The source, non-encoded string. |
numbytes | The number of bytes to encode, this should not exceed 45. |
maxlength | The maximum length of the dest[] array. |
Return Values:
This function does not return any specific values.
Example Usage:
uuencode(encodedString, normalString, 45);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- Uudecode: Decode an UU-encoded stream.
- Memcpy: Copy bytes from one location to another.
This article/section is a stub You can help SA-MP by expanding it |