mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
10 lines
302 B
C
10 lines
302 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_X86_CMDLINE_H
|
|
#define _ASM_X86_CMDLINE_H
|
|
|
|
int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
|
|
int cmdline_find_option(const char *cmdline_ptr, const char *option,
|
|
char *buffer, int bufsize);
|
|
|
|
#endif /* _ASM_X86_CMDLINE_H */
|