1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/include/kernaux/cmdline.h

41 lines
695 B
C
Raw Normal View History

2020-12-01 14:55:16 -05:00
#ifndef KERNAUX_INCLUDED_CMDLINE
2021-12-20 01:17:53 -05:00
#define KERNAUX_INCLUDED_CMDLINE
2020-12-01 14:55:16 -05:00
2021-12-13 15:46:58 -05:00
#ifdef __cplusplus
extern "C" {
#endif
2022-06-27 10:46:29 -04:00
#include <kernaux/generic/file.h>
2020-12-06 05:16:15 -05:00
#include <stdbool.h>
2021-12-16 10:26:16 -05:00
#include <stddef.h>
2020-12-01 15:22:38 -05:00
#define KERNAUX_CMDLINE_ERROR_MSG_SIZE_MAX 256
#define KERNAUX_CMDLINE_ERROR_MSG_SLEN_MAX \
(KERNAUX_CMDLINE_ERROR_MSG_SIZE_MAX - 1)
bool kernaux_cmdline(
2020-12-01 15:22:38 -05:00
const char *cmdline,
char *error_msg,
2021-12-16 10:26:16 -05:00
size_t *argc,
2020-12-01 15:22:38 -05:00
char **argv,
char *buffer,
2022-06-27 12:30:47 -04:00
size_t arg_count_max,
2022-01-21 16:42:54 -05:00
size_t buffer_size
2020-12-01 15:22:38 -05:00
);
2022-06-27 10:46:29 -04:00
bool kernaux_cmdline_file(
const char *cmdline,
char *error_msg,
size_t *argc,
2022-06-27 12:30:47 -04:00
KernAux_File file,
size_t *arg_idxs,
size_t arg_count_max
2022-06-27 10:46:29 -04:00
);
2020-12-01 14:55:16 -05:00
#ifdef __cplusplus
}
#endif
#endif