Fixed small things
This commit is contained in:
parent
b2e5d19c66
commit
dfc3ab4353
2 changed files with 0 additions and 12 deletions
|
@ -211,17 +211,6 @@ unsigned solve_mat(unsigned c, unsigned r) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
void skip_lines(FILE * fd, unsigned num) {
|
||||
for (unsigned i = 0; i < num; ++i) {
|
||||
fscanf(fd, "%*[^\n]\n", NULL);
|
||||
}
|
||||
}
|
||||
|
||||
void fatal(const char * msg) {
|
||||
fprintf(stderr, "%s\n", msg);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
|
||||
make_exit_cell(&testM[3][3]);
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
//razvan.cioarga@cs.upt.ro
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
|
Loading…
Reference in a new issue