K 10 svn:author V 4 ache K 8 svn:date V 27 1997-12-24T14:32:40.000000Z K 7 svn:log V 526 Back out part related to "return 0 if n == 0" and return EOF as before. The main argument is that it is impossible to determine if %n evaluated or not when snprintf return 0, because it can happens for both n == 0 and n == 1. Although EOF here is good indication of the end of process, if n is decreased in the loop... Since it is already supposed in many places that EOF *is* negative, f.e. from Single Unix specs for snprintf "return ... a negative value if an output error was encountered" this not makes situation worse. END