unpack zips in src to better compression

This commit is contained in:
2022-10-20 13:28:49 +02:00
parent e25403bd5f
commit 87eb27f562
447 changed files with 55306 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#include "general.h"
#ifdef DEBUG
#include <windom/wout.h>
#endif
/*==================================================================================*
* void zdebug: *
* print debug information in 'wout' window. *
*----------------------------------------------------------------------------------*
* input: *
* ... -> text and parameter are the same that sandard "printf" function. *
*----------------------------------------------------------------------------------*
* returns: *
* -- *
*==================================================================================*/
void zdebug( const char *format, ...)
{
#ifdef DEBUG
va_list args;
char fo_buff[255], *p;
va_start( args, format);
vsprintf( fo_buff, format, args);
p = fo_buff;
va_end( args);
wout_printf("%s\n", p);
#endif
}