11 lines
245 B
C++
11 lines
245 B
C++
/* SPDX-License-Identifier: Apache-2.0
|
|
* (c) 2025, Konstantin Demin
|
|
*/
|
|
|
|
#ifndef INCLUDE_COREUTILS_SORT_HH
|
|
#define INCLUDE_COREUTILS_SORT_HH 1
|
|
|
|
int coreutils_version_sort(char const * a, char const * b);
|
|
|
|
#endif /* INCLUDE_COREUTILS_SORT_HH */
|