mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-05 10:52:15 +02:00
12 lines
185 B
C
12 lines
185 B
C
#pragma once
|
|
#include <limits.h>
|
|
|
|
#include "services/fs.h"
|
|
|
|
typedef union {
|
|
char unix_path[PATH_MAX+1];
|
|
FsPath nx_path;
|
|
} PathBuf;
|
|
|
|
extern __thread PathBuf __nx_dev_path_buf;
|