summaryrefslogtreecommitdiff
path: root/src/core/misc.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2004-03-23 22:07:55 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2004-03-23 22:07:55 +0000
commitb886e97d5e1c087e94232ed003a9abcb1ec1f192 (patch)
treef845880ca935d1b7f79dd5f0b10fc72d5fc08ea6 /src/core/misc.c
parent0e133595d1061713a711232160035b675fd4bc3b (diff)
downloadirssi-b886e97d5e1c087e94232ed003a9abcb1ec1f192.zip
added strocpy()
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3238 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/misc.c')
-rw-r--r--src/core/misc.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/misc.c b/src/core/misc.c
index 1359b71b..f080fd0f 100644
--- a/src/core/misc.c
+++ b/src/core/misc.c
@@ -778,6 +778,20 @@ char *escape_string(const char *str)
return ret;
}
+int strocpy(char *dest, const char *src, size_t dstsize)
+{
+ if (dstsize == 0)
+ return -1;
+
+ while (*src != '\0' && dstsize > 1) {
+ *dest++ = *src++;
+ dstsize--;
+ }
+
+ *dest++ = '\0';
+ return *src == '\0' ? 0 : -1;
+}
+
int nearest_power(int num)
{
int n = 1;