14 lines
338 B
C
14 lines
338 B
C
|
//
|
||
|
// Created by caleb on 3/16/24.
|
||
|
//
|
||
|
|
||
|
#ifndef MP3_CALEBFONTENOT_ARRAYFUNCTIONS_H
|
||
|
#define MP3_CALEBFONTENOT_ARRAYFUNCTIONS_H
|
||
|
|
||
|
int * reverseArray( int arr[], int size);
|
||
|
int * arrayExpander( int arr[], int size);
|
||
|
int * elementShifter( int arr[], int size);
|
||
|
void printArray(int arr[], int size);
|
||
|
|
||
|
#endif //MP3_CALEBFONTENOT_ARRAYFUNCTIONS_H
|