xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / src / int / fuse.h (67ecf15440db62ce6823645740fedf585f2a2c46) (2,365B) (mode 100644) [raw]
/* vifm
 * Copyright (C) 2001 Ken Steen.
 * Copyright (C) 2011 xaizek.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef VIFM__INT__FUSE_H__
#define VIFM__INT__FUSE_H__

#include "../utils/test_helpers.h"

struct view_t;

/* Won't mount same file twice */
void fuse_try_mount(struct view_t *view, const char program[]);

/* Unmounts all FUSE mounded filesystems. */
void fuse_unmount_all(void);

/* Returns non-zero on successful leaving mount point directory. */
int fuse_try_updir_from_a_mount(const char path[], struct view_t *view);

/* Checks whether given path is mount point of some previous FUSE mount
 * operation.  Returns non-zero if so, and zero otherwise. */
int fuse_is_mount_point(const char path[]);

/* For paths under one of FUSE mount points gets full path to file used to
 * initiate mounting.  Returns pointer to internally stored string, or NULL if
 * path is out of any previously made FUSE mounts. */
const char * fuse_get_mount_file(const char path[]);

/* Return value:
 *   -1 error occurred.
 *   0  not mount point.
 *   1  left FUSE mount directory. */
int fuse_try_unmount(struct view_t *view);

/* Returns non-zero in case string is a FUSE mount string. */
int fuse_is_mount_string(const char string[]);

/* Removes fuse mount prefixes from the string. */
void fuse_strip_mount_metadata(char string[]);

TSTATIC_DEFS(
	void format_mount_command(const char mount_point[], const char file_name[],
			const char param[], const char format[], size_t buf_size, char buf[],
			int *foreground);
)

#endif /* VIFM__INT__FUSE_H__ */

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master