aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-02-21 18:06:11 -0500
committerNathan Vance <nathav63@gmail.com>2015-02-21 18:06:11 -0500
commite723087996663d5a1461297533e57bd2d8174585 (patch)
treedfd2584267d434c97dd543e8dc0d354a2060f75b /util.c
parentAdded view for all wonders (diff)
download7w-e723087996663d5a1461297533e57bd2d8174585.tar.gz
7w-e723087996663d5a1461297533e57bd2d8174585.tar.bz2
7w-e723087996663d5a1461297533e57bd2d8174585.zip
Major view improvements
Diffstat (limited to 'util.c')
-rw-r--r--util.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/util.c b/util.c
index 93c5904..829e7d1 100644
--- a/util.c
+++ b/util.c
@@ -26,12 +26,6 @@ char* get_chararray(int size)
return ret;
}
-void array_cpy(int *a, int *b, int len) //copies b to a
-{
- int i;
- for(i = 0; i < len; i++) a[i] = b[i];
-}
-
/* In string a[], replace nth occerence of x[] with y[],
or all occerences if n == 0. Note '.' is wild and
the last . replaced will be returned. */
bgstack15