add : copy tools

This commit is contained in:
2026-03-24 10:12:35 +01:00
parent c21894df0d
commit e49be81258
2 changed files with 363 additions and 8 deletions
+6 -8
View File
@@ -1,16 +1,14 @@
#include "y_test_h.h"
IMPLEMENTATION_PROGRESS_BAR()
IMPLEMENTATION_TOOLS()
int main(){
bar_progress_start();
int n=221;
char *a="Heyyy";
char *b="Hello";
for(int i=0; i<n; ++i){
//sleep(2222);
bar_progress_step(i/n);
}
printf(" %s vs %s = %d \n",a,b,COMPARE_N_TYPE_STRING(&a,&b));
return 0;
}