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 / args.h (67a488f3e577fe086452b2ca6e3083c892a0eb1e) (3,240B) (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__ARGS_H__
#define VIFM__ARGS_H__

#include <stddef.h> /* size_t */

#include "compat/fs_limits.h"
#include "utils/string_array.h"

/* Set of arguments that are processed at the same time. */
typedef enum
{
	AS_GENERAL, /* --help and --version which depend on nothing. */
	AS_IPC,     /* --remote and --remote-expr which require IPC. */
	AS_OTHER,   /* All other options. */
}
ArgsSubset;

/* Parsed command-line arguments. */
typedef struct
{
	int help;    /* Display help information and quit. */
	int version; /* Display version information and quit. */

	int logging;            /* Enable logging. */
	char *startup_log_path; /* Path for startup log (during initialization). */

	int no_configs;  /* Skip reading configuration files. */
	int file_picker; /* Use predefined $VIFM/vimfiles for list of files. */

	char chosen_files_out[PATH_MAX + 1]; /* Output for file picking. */
	char chosen_dir_out[PATH_MAX + 1];   /* Output for directory picking. */
	const char *delimiter;               /* Delimiter for list of picked files. */
	const char *on_choose;               /* Action to perform on chosen files. */

	const char *server_name; /* Name of this server. */
	const char *target_name; /* Name of target server. */
	char **remote_cmds;      /* Arguments to pass to server instance. */
	char *remote_expr;       /* Expression to evaluate remotely. */

	char lwin_path[PATH_MAX + 1]; /* Chosen path of the left pane. */
	char rwin_path[PATH_MAX + 1]; /* Chosen path of the right pane. */

	int lwin_handle; /* Whether to open file in the left pane (else select). */
	int rwin_handle; /* Whether to open file in the right pane (else select). */

	char **cmds;  /* List of startup commands. */
	size_t ncmds; /* Number of startup commands. */

	char **plugins_dirs;  /* List of additional plugin search paths. */
	size_t nplugins_dirs; /* Their count. */
}
args_t;

struct ipc_t;

/* Parses command-line arguments into fields of the *args structure. */
void args_parse(args_t *args, int argc, char *argv[], const char dir[]);

/* Processes command-line arguments from fields of the *args structure. */
void args_process(args_t *args, ArgsSubset subset, struct ipc_t *ipc);

/* Frees memory allocated for the structure.  args can be NULL. */
void args_free(args_t *args);

#endif /* VIFM__ARGS_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