static size_t copyString()

in source/sigv4.c [1070:1076]


static size_t copyString( char * destination,
                          const char * source,
                          size_t length )
{
    ( void ) memcpy( destination, source, length );
    return length;
}