Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
27 lines
364 B
C
27 lines
364 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "test.h"
|
|
|
|
int assertEquals(int a, int b, char * msg){
|
|
int rVal = (a != b);
|
|
if(rVal){
|
|
printf(msg, a, b);
|
|
}
|
|
return rVal;
|
|
}
|
|
|
|
int assertNotEquals(int a, int b, char * msg){
|
|
int rVal = (a == b);
|
|
if(rVal){
|
|
printf(msg, a, b);
|
|
}
|
|
return rVal;
|
|
}
|
|
|
|
|
|
int test(){
|
|
return 0;
|
|
}
|
|
|