]> git.lizzy.rs Git - asprintf.git/commitdiff
Rename library to asprintf
authorElias Fleckenstein <eliasfleckenstein@web.de>
Wed, 13 Apr 2022 09:59:40 +0000 (11:59 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Wed, 13 Apr 2022 09:59:40 +0000 (11:59 +0200)
README.md
asprintf.h

index bfb2c14ccf55624361e730498868fa2805416bf7..41931467a64fbdf24b50291dc8f4bcabc7f70cd1 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,9 +1,3 @@
-# Dragonport
-
-Dragonport is a small C library to provide portable implementations of some GNU or Linux only methods that [dragonblocks_alpha](https://github.com/dragonblocks/dragonblocks_alpha) depends on.
-It also includes methods that are technically in the POSIX standard, but are not implemented on some target platforms (or the target platforms only conform with an older standard, like Plan 9 APE).
-Where possible, dragonblocks will use an already existing library, this library is just a collection of code that is either part of bigger projects that dragonblocks should not depend on or that is not compatible with dragonblocks without modifications.
-This library is only capable of what dragonblocks needs, and it does not intend to be general purpose.
-
-## Implementations
-* `asprintf.c`: Taken from [libressl-portable](https://github.com/libressl-portable/portable/blob/master/crypto/compat/bsd-asprintf.c) with slight modifications.
+# Asprintf
+Provide a portable implementation of the asprintf GNU extension.
+Code taken from [libressl-portable](https://github.com/libressl-portable/portable/blob/master/crypto/compat/bsd-asprintf.c) with slight modifications.
index eef66c5bee757888332ec20a11f9490a03b1f910..29c5b9d79dd2b2e876200993d1c5dbac0efe87eb 100644 (file)
@@ -1,9 +1,9 @@
-#ifndef _DRAGONPORT_ASPINTF_H_
-#define _DRAGONPORT_ASPINTF_H_
+#ifndef _ASPINTF_H_
+#define _ASPINTF_H_
 
 #include <stdarg.h>
 
 int vasprintf(char **str, const char *fmt, va_list ap);
 int asprintf(char **str, const char *fmt, ...);
 
-#endif _DRAGONPORT_ASPINTF_H_
+#endif // _ASPINTF_H_