From 3a0624ab2ec70b9aaca06d402ee691da9233028e Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 8 Apr 2015 09:11:25 -0700 Subject: [PATCH] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 6acbc50f..e48937c3 100644 --- a/README.rst +++ b/README.rst @@ -174,10 +174,10 @@ all the features I needed. Printf ~~~~~~ -The good thing about printf is that it is very fast and readily available +The good thing about printf is that it is pretty fast and readily available being a part of the C standard library. The main drawback is that it doesn't support user-defined types. Printf also has safety issues although -they are mostly solved with `_attribute__ ((format (printf, ...)) +they are mostly solved with `__attribute__ ((format (printf, ...)) `_ in GCC. There is a POSIX extension that adds positional arguments required for `i18n `_