Quote:
Originally Posted by Exolent[jNr]
PHP Code:
stock first_char_to_last_char( const input[], output[] ) { format( output, strlen( input ), "%s%c", input[1], input[0] ); }
|
didnt know that pawn is able to print single chars by %c :/ never daw that one before
PHP Code:
stock first_char_to_last_char( const input[], output[], len )
{
format( output, len, "%s%c", input[1], input[0] );
}
__________________