a lot of functions for debugging purpose
More...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "debugging.h"
|
|
long | min (int *arr, long len) |
| |
|
long | max (int *arr, long len) |
| |
|
long | sum (int *arr, long len) |
| |
|
void | rotate (int **matrix, long rows, long cols) |
| |
|
void | printArr (int *arr, long len) |
| |
|
void | printMatrix (int **matrix, long rows, long cols) |
| |
|
long | readArr (int *arr) |
| |
|
int | cmp (const void *x, const void *y) |
| |
|
int | rcmp (const void *x, const void *y) |
| |
|
void | sort (int *arr, long len, int reverse) |
| |
|
void | reverseArr (int *arr, long len) |
| |
a lot of functions for debugging purpose