summaryrefslogtreecommitdiffstats
path: root/src/commonlib/include/commonlib/sort.h
blob: 3ba00e7a2c8313bc4bd4f44aaefd4af7b8760aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef _COMMONLIB_SORT_H_
#define _COMMONLIB_SORT_H_

#include <stddef.h>

typedef enum {
	NUM_ASCENDING,
	NUM_DESCENDING
} sort_order_t;

void bubblesort(int *v, size_t num_entries, sort_order_t order);

#endif /* _COMMONLIB_SORT_H_ */