Skip to main content

uuencode

warning

This function starts with a lowercase letter.

Description

Encode a string to an UU-decoded string.

NameDescription
dest[]The destination string for the encoded stream.
const source[]The source, non-encoded string.
numbytesThe number of bytes to encode, this should not exceed 45.
maxlength = sizeof (dest)The maximum length of the dest[] array.

Returns

This function does not return any specific values.

Examples

uuencode(encodedString, normalString, 45);
  • uudecode: Decode an UU-encoded string.
  • memcpy: Copy bytes from one location to another.