mirror of
https://github.com/javalsai/lidm.git
synced 2026-02-27 20:10:44 +01:00
16 lines
479 B
C
16 lines
479 B
C
// TODO: rewrite properly
|
|
// NOLINTBEGIN(clang-diagnostic-nullability-completeness)
|
|
|
|
#ifndef DESKTOP_EXEC_H_
|
|
#define DESKTOP_EXEC_H_
|
|
|
|
#include "macros.h"
|
|
|
|
char* NULLABLE search_path(const char* NNULLABLE for_binary);
|
|
int execvpe_desktop(char** args, char* NNULLABLE* NNULLABLE envlist);
|
|
int parse_exec_string(const char* exec_s, int* arg_count, char*** args);
|
|
void free_parsed_args(int arg_count, char** args);
|
|
|
|
#endif
|
|
// NOLINTEND(clang-diagnostic-nullability-completeness)
|