This is stdio_cp_str.c in view mode; [Download] [Up]
/*
* 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() */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.