Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | really small changes to dwm.1 | Anselm R. Garbe | 2006-09-08 | 1 | -4/+3 |
| | |||||
* | made markups in dwm.1 more consistent | Anselm R. Garbe | 2006-09-07 | 1 | -95/+38 |
| | |||||
* | small addition to dwm.1 | Anselm R. Garbe | 2006-09-07 | 1 | -4/+4 |
| | |||||
* | well ok, added Mod-s to default bindings (however, I don't need it) | Anselm R. Garbe | 2006-09-05 | 1 | -0/+6 |
| | |||||
* | I really need column growing, now pushing upstream | Anselm R. Garbe | 2006-09-05 | 1 | -0/+6 |
| | |||||
* | applied sanders patch | Anselm R. Garbe | 2006-09-01 | 1 | -6/+12 |
| | |||||
* | changed shortcut into Mod1-0 | Anselm R. Garbe | 2006-08-31 | 1 | -5/+5 |
| | |||||
* | added viewall to mainstream (only Ross Mohns version, not the toggle) | Anselm R. Garbe | 2006-08-31 | 1 | -0/+4 |
| | |||||
* | implemented Button2 press on tags for toggletag on the focused client | Anselm R. Garbe | 2006-08-31 | 1 | -0/+6 |
| | |||||
* | applied sanders somepatches.patch | Anselm R. Garbe | 2006-08-28 | 1 | -1/+6 |
| | |||||
* | updated man page of dwm | Anselm R. Garbe | 2006-08-25 | 1 | -3/+3 |
| | |||||
* | yet another fix | Anselm R. Garbe | 2006-08-24 | 1 | -1/+1 |
| | |||||
* | small man page fix | Anselm R. Garbe | 2006-08-24 | 1 | -1/+2 |
| | |||||
* | updated man page | Anselm R. Garbe | 2006-08-23 | 1 | -4/+4 |
| | |||||
* | applied tag drawing change to man page | Anselm R. Garbe | 2006-08-23 | 1 | -4/+4 |
| | |||||
* | small fix of man page | Anselm R. Garbe | 2006-08-23 | 1 | -1/+1 |
| | |||||
* | updated man page | Anselm R. Garbe | 2006-08-22 | 1 | -2/+1 |
| | |||||
* | small changes to dwm.1, rearranged order within main event loop | Anselm R.Garbe | 2006-08-21 | 1 | -6/+8 |
| | |||||
* | applied jk_to_tab patch | Anselm R.Garbe | 2006-08-15 | 1 | -34/+42 |
| | |||||
* | applied sanders man page patch, removed button2 from bar click | Anselm R.Garbe | 2006-08-14 | 1 | -19/+21 |
| | |||||
* | implemented restack behavior (floats are on top in tiled mode) | Anselm R.Garbe | 2006-08-14 | 1 | -2/+2 |
| | |||||
* | removed viewnext/viewprev | Anselm R.Garbe | 2006-08-14 | 1 | -16/+0 |
| | |||||
* | updated man page, added CAVEATS section | Anselm R.Garbe | 2006-08-13 | 1 | -7/+14 |
| | |||||
* | implemented viewextend and added M-S-C-n shortcuts for extending the current ↵ | Anselm R.Garbe | 2006-08-11 | 1 | -4/+17 |
| | | | | view... updated man page (works great!) nice feature | ||||
* | applied Sanders fixes to dwm.1 | Anselm R.Garbe | 2006-08-11 | 1 | -4/+5 |
| | |||||
* | fixed dwm.1, added Mod1-Shift-c (was missing for an odd reason) | Anselm R.Garbe | 2006-08-11 | 1 | -3/+7 |
| | |||||
* | updated dwm(1) | Anselm R.Garbe | 2006-08-11 | 1 | -0/+14 |
| | |||||
* | applied sander's patch | Anselm R.Garbe | 2006-08-10 | 1 | -3/+10 |
| | |||||
* | disallow zoom on maximized clients | Anselm R.Garbe | 2006-08-10 | 1 | -4/+0 |
| | |||||
* | added a trailing '.' to shortcut descriptions in dwm(1) | arg@10ksloc.org | 2006-08-07 | 1 | -15/+15 |
| | |||||
* | applied Sanders man page/Makefile patch | arg@10ksloc.org | 2006-08-07 | 1 | -1/+1 |
| | |||||
* | updated man page | /*
* parser.h
* vim: expandtab:ts=4:sts=4:sw=4
*
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
*
* This file is part of Profanity.
*
* Profanity 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 3 of the License, or
* (at your option) any later version.
*
* Profanity 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 Profanity. If not, see <https://www.gnu.org/licenses/>.
*
* In addition, as a special exception, the copyright holders give permission to
* link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two.
*
* You must obey the GNU General Public License in all respects for all of the
* code used other than OpenSSL. If you modify file(s) with this exception, you
* may extend this exception to your version of the file(s), but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version. If you delete this exception statement from all
* source files in the program, then also delete it here.
*
*/
#ifndef TOOLS_PARSER_H
#define TOOLS_PARSER_H
#include <glib.h>
gchar** parse_args(const char* const inp, int min, int max, gboolean* result);
gchar** parse_args_with_freetext(const char* const inp, int min, int max, gboolean* result);
gchar** parse_args_as_one(const char* const inp, int min, int max, gboolean* result);
int count_tokens(const char* const string);
char* get_start(const char* const string, int tokens);
GHashTable* parse_options(gchar** args, gchar** keys, gboolean* res);
void options_destroy(GHashTable* options);
#endif
| 2006-07-16 | 1 | -35/+281-2-gfad0 (git 2.36.2.497.gbbea4dcf42) at 2025-01-01 09:29:51 +0000 |