Hello<br>
<br>
I use the ext_error function in my code, but it crashes. I don't know why .....<br>
<br>
int exp_error(char *msg, ...) {<br>
&nbsp; <br>
&nbsp; char buffer[2000];&nbsp; /* No novels to the error logs, OK? */<br>
&nbsp; va_list ap;<br>
&nbsp; va_start(ap,msg);<br>
&nbsp; vsprintf(buffer,msg,ap);<br>
&nbsp; va_end(ap);<br>
&nbsp; <br>
&nbsp; printf(&quot;%s\n&quot;, buffer) ;<br>
&nbsp; <br>
<span style="color: rgb(255, 0, 0);">&nbsp; ext_error (buffer, 1);</span><br>
&nbsp;&nbsp; //&nbsp; print_error (buffer,ERR);<br>
&nbsp; <br>
&nbsp; if ( ext_error ) return 0; /* do not exit error routine is specified */<br>
&nbsp; <br>
&nbsp; printf(&quot;»»»»»»»»»\n&quot;) ;<br>
<br>
&nbsp; exit (1);<br>
}<br>
<br>
Any suggestions ? Help please!<br>
<br>
Thanks :)<br>