1
0
mirror of https://git.sr.ht/~sircmpwn/gmni synced 2024-11-23 04:51:59 +01:00
Gemini client
Go to file
Giuseppe Lumia ab66dd2be9 Simplify posix_dirname logic
dirname has two main problems:
1. It could change in place the string that is passed to it.
2. It uses a static string for its return value, so one should copy it
   somewhere else as soon as possible to avoid subsequent calls to
   dirname to corrupt his data (see #48).

We avoid 1. passing a copy of `path` to dirname and 2. copying it's
return value into `dname`.
2020-11-17 09:30:56 -05:00
doc Add 'd' to download page 2020-10-21 10:12:51 -04:00
include Re-add public headers 2020-10-24 13:56:50 -04:00
src Simplify posix_dirname logic 2020-11-17 09:30:56 -05:00
.gitignore Re-add public headers 2020-10-24 13:56:50 -04:00
config.sh Remove -D option from install commands 2020-11-06 10:05:43 -05:00
configure Add static library for gmni 2020-10-24 13:41:07 -04:00
COPYING Initial commit 2020-09-20 10:17:39 -04:00
Makefile Remove -D option from install commands 2020-11-06 10:05:43 -05:00
README.md Update README.md 2020-09-20 23:52:18 -04:00

gmni - A Gemini client

This is a Gemini client. Included are:

Dependencies:

  • A POSIX-like system and a C11 compiler
  • OpenSSL
  • scdoc (optional)

Features:

  • Page history
  • Regex searches
  • Bookmarks

Screenshot of the line-mode browser

Compiling

$ mkdir build && cd build
$ ../configure
$ make
# make install

Usage

See gmni(1), gmnlm(1).