summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--document.asciidoc6
2 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2d982d4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,2 @@
+document.txt: document.asciidoc
+ asciidoc --backend=latex $>
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()