The header files are usually based on code from lib/. This commit copies relevant license headers from lib/ to include/ to keep things consistent. The very generic things (e.g. MBR definitions) are always public domain. Fixes: https://github.com/util-linux/util-linux/issues/2010 Signed-off-by: Karel Zak <kzak@redhat.com>
9 lines
194 B
C
9 lines
194 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef UTIL_LINUX_SHELLS_H
|
|
#define UTIL_LINUX_SHELLS_H
|
|
|
|
extern int is_known_shell(const char *shell_name);
|
|
|
|
#endif /* UTIL_LINUX_SHELLS_H */
|