afc_string_left

Name

afc_string_left  -- Copies the leftmost len chars from src to string

Synopsis

char * afc_string_left ( char * string, const char * src, long len );

Description

This function copies the leftmost len characters from src into string. This function is just provided for completeness, since it has the same function like afc_string_copy()

Inputs

string

AFC string to convert.

src

The source string. It doesn't necessarily need to be an AFC string.

len

Number of chars to copy into string

Result

Note

See Also