lb> anyone can say any function or process to error control in c
lb> linux, I like adapt a visual c program that use _try/_except for
lb> mistakes
Exceptions are a C++ feature. That is, standard-conforming, portable
C++ programs can use them but standard-conforming, portable C programs
cannot. You will probably either have to use C++ or mess around with
setjmp(3).