summaryrefslogtreecommitdiff
path: root/document.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'document.asciidoc')
-rw-r--r--document.asciidoc6
1 files changed, 6 insertions, 0 deletions
diff --git a/document.asciidoc b/document.asciidoc
index fc5df0e..7cc409d 100644
--- a/document.asciidoc
+++ b/document.asciidoc
@@ -49,6 +49,12 @@ Um dieses Problem zu loesen wurden neue Zeichenkettenfuntkionen in die
Standard-C-Bibliothek auf genommen, welche als Argument maximal Laengen
uebergeben bekommen.
+-------------------
+strcpy(char *dst, const char *src);
+strncpy(char *dst, const char *src, size_t len);
+strlcpy(char *dst, const char *src, size_t dstsize);
+-------------------
+
Hierbei gibt es zwei ansaetze mit Laengen umzugehen.
TODO: strncpy() strlcpy()