We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28213d1 commit 4fa7d4eCopy full SHA for 4fa7d4e
src/hsp3/linux/supio_linux.cpp
@@ -853,3 +853,30 @@ int ReplaceDone( void )
853
}
854
855
856
+
857
858
+//
859
+// linux debug support
860
861
+void Alert( const char *mes )
862
+{
863
+ printf( "%s", mes );
864
+ printf( "\r\n" );
865
+}
866
867
+void AlertV( const char *mes, int val )
868
869
+ printf( "%s%d\r\n",mes,val );
870
871
872
+void Alertf( const char *format, ... )
873
874
+ char textbf[4096];
875
+ va_list args;
876
+ va_start(args, format);
877
+ vsprintf(textbf, format, args);
878
+ va_end(args);
879
+ printf( "%s", textbf );
880
881
882
0 commit comments