6 lines
110 B
C
6 lines
110 B
C
|
#ifndef __B_H__
|
||
|
#define __B_H__
|
||
|
|
||
|
int *arrSort(int arrInput[], int arrlen); // 声明数组排序函数
|
||
|
|
||
|
#endif
|