ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts  1.0
ESP8266ILI9341DisplayProject
sort.h
Go to the documentation of this file.
1 
24 #ifndef _SORT_H_
25 #define _SORT_H_
26 
27 /* sort.c */
28 MEMSPACE void heapify ( int *v , int size , int root );
29 MEMSPACE void heapsort ( int *v , int size );
30 MEMSPACE void insert_sort ( uint16_t *v , int size );
31 
32 #endif // _SORT_H_
MEMSPACE void heapsort(int *v, int size)
Definition: sort.c:57
MEMSPACE void heapify(int *v, int size, int root)
Definition: sort.c:30
unsigned short uint16_t
Definition: send.c:18
MEMSPACE void insert_sort(uint16_t *v, int size)
Definition: sort.c:79
#define MEMSPACE
Definition: cpu.h:25