14 lines
323 B
C
14 lines
323 B
C
#ifndef MINUNIT_EXT_H
|
|
|
|
#include <string.h>
|
|
|
|
#include "minunit.h"
|
|
|
|
// cuando escribe esto el compilar me arrojo que si no era
|
|
// mejor usar mu_assert_string_eq increble a
|
|
//int mu_assert_string_equals(const char *a, const char *b) {
|
|
// return mu_assert(strcmp(a, b) == 0, "string not equals");
|
|
//}
|
|
|
|
#endif //MINUNIT_EXT_H
|