summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Klemkow <j.klemkow@wemelug.de>2012-11-09 01:38:43 +0100
committerJan Klemkow <j.klemkow@wemelug.de>2012-11-09 01:38:43 +0100
commit5f994206b9af6c8cc5bca872880dc18a9f73d0c4 (patch)
treec42c8ff5b181202d2e81f6ebe502efa13facc2dd
parenta9594690615f362211f59f1d23cab3be571ba9e7 (diff)
downloadsksys-5f994206b9af6c8cc5bca872880dc18a9f73d0c4.tar.gz
sksys-5f994206b9af6c8cc5bca872880dc18a9f73d0c4.tar.bz2
sksys-5f994206b9af6c8cc5bca872880dc18a9f73d0c4.zip
Add Makefile
-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()