/*
 * PCN System
 * Author:      Steve Tuecke
 *              Argonne National Laboratory
 *
 * Please see the DISCLAIMER file in the top level directory of the
 * distribution regarding the provisions under which this software
 * is distributed.
 *
 * stdio_cp_str.c
 */

#include "stdio_internal.h"

/*
 * _p_stdio_copy_string()
 *
 * Copy the string in 'from' to 'to'.  It is assumed that there is enough
 * space in 'to' to hold 'from', including the null termination.
 */
void _p_stdio_copy_string(to, from)
char_t *to, *from;
{
    strcpy(to, from);
} /* _p_stdio_copy_string() */
