1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#ifndef __FILL_ARRAY_H__
#define __FILL_ARRAY_H__

// you are free to copy/adapt from this file

/**
 * fill array with increasing numbers starting at 1
 * length to fill
 * if successful, return true
 * if unsuccessful, return false and put message in a_error
 */
bool fill_array(int* numbers, int numbers_len, char** a_error);

#endif /* end of include guard: __FILL_ARRAY_H__ */

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.