Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 296 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 296 Bytes

Array

Simple array of integers. With I/O functions, Sort Functions and Search Functions.

Structure

typedef struct CArray {
		int *array;
		int size;
	} CArray;

Files

  • CArray.c - Array Implementations
  • CArray.h - Import for Usage
  • CArrayTests.c - Usage Examples and tests