Skip to content

Commit f060c17

Browse files
author
Peter Scott
committed
Renamed files
1 parent 435c92d commit f060c17

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CFLAGS = -O2 -Wall
44

55
all: testsuite
66

7-
testsuite: testsuite.c netstring_stream.o
7+
testsuite: testsuite.c netstring.o
88

99
test: testsuite
1010
./testsuite

netstring_stream.c renamed to netstring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <stdlib.h>
66
#include <ctype.h>
77
#include <math.h>
8-
#include "netstring_stream.h"
8+
#include "netstring.h"
99

1010
/* Reads a netstring from a `buffer` of length `buffer_length`. Writes
1111
to `netstring_start` a pointer to the beginning of the string in
File renamed without changes.

testsuite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <string.h>
44
#include <assert.h>
55

6-
#include "netstring_stream.h"
6+
#include "netstring.h"
77

88

99
/* Good examples */

0 commit comments

Comments
 (0)