diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-09 01:38:43 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-09 01:38:43 +0100 |
commit | 5f994206b9af6c8cc5bca872880dc18a9f73d0c4 (patch) | |
tree | c42c8ff5b181202d2e81f6ebe502efa13facc2dd /document.asciidoc | |
parent | a9594690615f362211f59f1d23cab3be571ba9e7 (diff) | |
download | sksys-5f994206b9af6c8cc5bca872880dc18a9f73d0c4.tar.gz sksys-5f994206b9af6c8cc5bca872880dc18a9f73d0c4.tar.bz2 sksys-5f994206b9af6c8cc5bca872880dc18a9f73d0c4.zip |
Add Makefile
Diffstat (limited to 'document.asciidoc')
-rw-r--r-- | document.asciidoc | 6 |
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() |