On Sat, 29 Jan 2005, Alma J Wetzker wrote: > You should not need to worry about local variables, even if they are static. > Global variables, definitions and functions are where name collisions take > place. If you declare a global variable in a file "static" then becomes global but ONLY to that file. This can help in multi-file projects. --