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 `_