previous next Up Title Contents Index

string_cat()

    void string_cat (char *target_ptr, char *source_ptr)
    {
        while (*target_ptr != '\0') 
        /*etsitään merkkijonon loppu*/
        {
            target_ptr++;
        }
        while ((*target_ptr++ = *source_ptr++) != '\0');
    }

Huomaa

previous next Up Title Contents Index