Skip to content

Commit

Permalink
Add nullability specifiers to libroot.h
Browse files Browse the repository at this point in the history
  • Loading branch information
leptos-null committed Feb 17, 2024
1 parent a7226d2 commit cc836c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libroot/libroot.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#include <sys/syslimits.h>

const char *libroot_dyn_get_root_prefix(void);
const char *libroot_dyn_get_jbroot_prefix(void);
const char *libroot_dyn_get_boot_uuid(void);
char *libroot_dyn_rootfspath(const char *path, char *resolvedPath);
char *libroot_dyn_jbrootpath(const char *path, char *resolvedPath);
const char *_Nonnull libroot_dyn_get_root_prefix(void);
const char *_Nonnull libroot_dyn_get_jbroot_prefix(void);
const char *_Nonnull libroot_dyn_get_boot_uuid(void);
char *_Nullable libroot_dyn_rootfspath(const char *_Nullable path, char *_Nullable resolvedPath);
char *_Nullable libroot_dyn_jbrootpath(const char *_Nullable path, char *_Nullable resolvedPath);

#ifdef __OBJC__

Expand Down

0 comments on commit cc836c2

Please sign in to comment.