mirror of
https://github.com/pine64/blisp.git
synced 2024-12-22 06:20:12 +00:00
Fix indentation
This commit is contained in:
parent
b9a2baae13
commit
a68c54ed2b
@ -35,17 +35,17 @@ static void* cmd_write_argtable[6];
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
static void get_executable_path(char* buffer_out, uint32_t max_size) {
|
static void get_executable_path(char* buffer_out, uint32_t max_size) {
|
||||||
assert (max_size >= PATH_MAX); // n.b. 1024 on MacOS. 4K on most Linux.
|
assert (max_size >= PATH_MAX); // n.b. 1024 on MacOS. 4K on most Linux.
|
||||||
|
|
||||||
char raw_path_name[PATH_MAX]; // $HOME/../../var/tmp/x
|
char raw_path_name[PATH_MAX]; // $HOME/../../var/tmp/x
|
||||||
char real_path_name[PATH_MAX]; // /var/tmp/x
|
char real_path_name[PATH_MAX]; // /var/tmp/x
|
||||||
uint32_t raw_path_size = sizeof(raw_path_name);
|
uint32_t raw_path_size = sizeof(raw_path_name);
|
||||||
|
|
||||||
if(!_NSGetExecutablePath(raw_path_name, &raw_path_size)) {
|
if(!_NSGetExecutablePath(raw_path_name, &raw_path_size)) {
|
||||||
realpath(raw_path_name, real_path_name);
|
realpath(raw_path_name, real_path_name);
|
||||||
}
|
}
|
||||||
// *real_path_name is appropriately sized and null terminated.
|
// *real_path_name is appropriately sized and null terminated.
|
||||||
strcpy(buffer_out, real_path_name);
|
strcpy(buffer_out, real_path_name);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -57,8 +57,8 @@ get_binary_folder(char* buffer, uint32_t buffer_size) {
|
|||||||
}
|
}
|
||||||
char* pos = strrchr(buffer, '/');
|
char* pos = strrchr(buffer, '/');
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
get_executable_path(buffer, buffer_size);
|
get_executable_path(buffer, buffer_size);
|
||||||
char* pos = strrchr(buffer, '/');
|
char* pos = strrchr(buffer, '/');
|
||||||
#else
|
#else
|
||||||
if (GetModuleFileName(NULL, buffer, buffer_size) <= 0) {
|
if (GetModuleFileName(NULL, buffer, buffer_size) <= 0) {
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user