aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/lib.h
diff options
context:
space:
mode:
authorMarvin Borner2019-09-28 23:08:13 +0200
committerMarvin Borner2019-09-28 23:08:13 +0200
commitb9c103e3048d2b28a2606a3b9693ec881425a732 (patch)
tree492a1bdba84c7dc8fe5eaee5c640cf9341f120ba /src/kernel/lib/lib.h
parent4dddb5f5f8611f6df6d2ce2f019cca67a5598cdb (diff)
Added some documentation
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r--src/kernel/lib/lib.h54
1 files changed, 52 insertions, 2 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h
index f83c7d5..d6cc09e 100644
--- a/src/kernel/lib/lib.h
+++ b/src/kernel/lib/lib.h
@@ -3,20 +3,70 @@
#include <stddef.h>
+/**
+ * Find the length of a string
+ * @param str The string pointer which size should be calculated
+ * @return The length of str
+ */
size_t strlen(const char *str);
+/**
+ * Compare two strings
+ * @param s1 The first string pointer
+ * @param s2 The second string pointer
+ * @return The length difference between s1 and s2
+ */
size_t strcmp(const char *s1, const char *s2);
-char *strcat(char *dst, const char *src);
+/**
+ * Append the data of src to dest
+ * @param dest The string destination pointer
+ * @param src The string pointer that will get appended
+ * @return The modified dest pointer
+ */
+char *strcat(char *dest, const char *src);
-char *strcpy(char *dst, const char *src);
+/**
+ * Copy the data of src to dest
+ * @param dest The copying destination pointer (gets replaced)
+ * @param src The string pointer that will get copied
+ * @return The modified dest pointer
+ */
+char *strcpy(char *dest, const char *src);
+/**
+ * Copy n data from src to dest
+ * @param dest The destination array pointer
+ * @param src The source array pointer of the data
+ * @param count The number of bytes to be copied (src)
+ * @return The modified dest pointer
+ */
void *memory_copy(void *dest, const void *src, size_t count);
+/**
+ * Replace n bytes of dest by val
+ * @param dest The destination array pointer
+ * @param val The replacing chracater
+ * @param count The number of times val should replace dest entry
+ * @return The modified dest pointer
+ */
void *memory_set(void *dest, char val, size_t count);
+/**
+ * Compare the first n bytes of a and b
+ * @param a_ptr The first memory area pointer
+ * @param b_ptr The second memory area pointer
+ * @param size The number of bytes to be compared
+ * @return -1 if a < b, 0 if a = b and 1 if a > b
+ */
int memory_compare(const void *a_ptr, const void *b_ptr, size_t size);
+/**
+ * Convert an int into a string
+ * @param i The integer which should be converted
+ * @param b The converted int as string
+ * @return The converted string (b)
+ */
char *itoa(int i, char b[]);
#endif