aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-05 20:03:17 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-05 20:03:17 +0000
commit9ff5567e2144af3c6f75594f3ab5e9496ede5c77 (patch)
tree6890d8b480bc1040cdb8b1921db9e604754d1630 /include
parent1aeaf394688119933dc22d5f1586fb78bc4985da (diff)
downloadbusybox-w32-9ff5567e2144af3c6f75594f3ab5e9496ede5c77.tar.gz
busybox-w32-9ff5567e2144af3c6f75594f3ab5e9496ede5c77.tar.bz2
busybox-w32-9ff5567e2144af3c6f75594f3ab5e9496ede5c77.zip
Fixed the comments to match the code and renamed the function to a (hopefully)
more descriptive name, and as per the style guide. git-svn-id: svn://busybox.net/trunk/busybox@1379 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/busybox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 4a4f44aea..21c62faac 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -144,7 +144,7 @@ void reset_ino_dev_hashtable(void);
144 144
145int copyFile(const char *srcName, const char *destName, 145int copyFile(const char *srcName, const char *destName,
146 int setModes, int followLinks, int forceFlag); 146 int setModes, int followLinks, int forceFlag);
147int copySubFile(int srcFd, int dstFd, size_t remaining); 147int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
148char *buildName(const char *dirName, const char *fileName); 148char *buildName(const char *dirName, const char *fileName);
149int makeString(int argc, const char **argv, char *buf, int bufLen); 149int makeString(int argc, const char **argv, char *buf, int bufLen);
150char *getChunk(int size); 150char *getChunk(int size);