1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/rotate-2-dimensional-array-90-degrees/solutions/c/function/array_2D_int.h

55 lines
1.3 KiB
C
Raw Normal View History

#ifndef __ARRAY_2D_INT__
#define __ARRAY_2D_INT__
#include <stdlib.h>
/**
* @brief Prints a 2D array of integers.
*
* @param array
* @param number_of_rows
* @param number_of_columns
*/
void array_2D_int_print(int **array, size_t number_of_rows, size_t number_of_columns);
/**
* @brief Read from stdin a 2D array (rectangle or square) of integers.
*
* @param number_of_rows
* @param number_of_columns
* @return int**
*/
int **array_2D_int_input(size_t *number_of_rows, size_t *number_of_columns);
/**
* @brief Reverse the order of the rows of a 2D array of integers.
*
* @param array
* @param number_of_rows
* @param number_of_columns
* @return int**
*/
int **array_2D_int_reverse_rows(int **array, size_t *number_of_rows, size_t *number_of_columns);
/**
* @brief Rotate a 2D array of integers by 90 degrees clockwise.
*
* @param array
* @param number_of_rows
* @param number_of_columns
* @return int**
*/
int **array_2D_int_rotate_90_degrees_clockwise(int **array, size_t *number_of_rows, size_t *number_of_columns);
/**
* @brief Rotate a 2D array of integers by 90 degrees anticlockwise.
*
* @param array
* @param number_of_rows
* @param number_of_columns
* @return int**
*/
int **array_2D_int_rotate_90_degrees_anticlockwise(int **array, size_t *number_of_rows, size_t *number_of_columns);
#endif