Donate Share

epto

File Release Notes and Changelog

Release Name: epto-0.8.4

Notes:
Added printf, sprintf, fprintf.

Changes: * Added printf, sprintf and fprintf For portability reasons, it is best to stay away from the following characters in the format string: $ & @ ` " \ (escape codes like \n, \r, \i, \f etc are ok, though). If you need any of the above characters, put them in the argument list as chars or strings. Do this: printf 'I have %s%d\n' '$' 3 Instead of this: printf 'I have $%d\n' 3 The latter will not work. See eptopgl(1) for more details