mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-06-05 23:05:44 +02:00
12 lines
313 B
C
12 lines
313 B
C
#ifndef ARRAY_H
|
|
#define ARRAY_H
|
|
|
|
void print_array(int arr[], int size);
|
|
int find_index(char* arr[], int size, char* needle);
|
|
int* largest_three(int arr[], int size);
|
|
int* inverse_array(int arr[], int size);
|
|
void sort_char_array(char arr[], int size);
|
|
void filter_lowercase_and_sort(char arr[], int size);
|
|
|
|
#endif
|