Skip to content
Snippets Groups Projects
Commit 34771565 authored by Philipp Schafft's avatar Philipp Schafft :lion_face:
Browse files

Feature: Make navigation_direction_to_str() public

parent a600b200
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ struct mount_identifier_tag {
REFOBJECT_DEFINE_TYPE(mount_identifier_t);
static inline const char * navigation_direction_id2str(navigation_direction_t dir)
const char * navigation_direction_to_str(navigation_direction_t dir)
{
switch (dir) {
case NAVIGATION_DIRECTION_UP: return "up"; break;
......
......@@ -29,6 +29,8 @@ typedef enum {
REFOBJECT_FORWARD_TYPE(mount_identifier_t);
const char * navigation_direction_to_str(navigation_direction_t dir);
void navigation_initialize(void);
void navigation_shutdown(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment