This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <assert.h> | |
#include <stdlib.h> | |
#define MAXLINE 10 // in the book this is 1000 | |
void safercopy(size_t to_length, char to[], size_t from_length, char from[]) | |
{ | |
int i = 0; |