xaizek / vifm-pdcurses (License: mostly public domain) (since 2019-03-20)
PDCurses 3.4 with vifm-specific patches applied (a couple were upstreamed)
<root> / pdcurses / deprec.c (83e613110226b71e49b41f27c8e8b04707b02196) (574B) (mode 100644) [raw]
/* Public Domain Curses */

#include <curspriv.h>

RCSID("$Id: deprec.c,v 1.6 2008/07/13 16:08:18 wmcbrine Exp $")

/* Deprecated functions. These should not be used, and will eventually 
   be removed. They're here solely for the benefit of applications that 
   linked to them in older versions of PDCurses. */

bool PDC_check_bios_key(void)
{
    return PDC_check_key();
}

int PDC_get_bios_key(void)
{
    return PDC_get_key();
}

bool PDC_get_ctrl_break(void)
{
    return !SP->raw_inp;
}

int PDC_set_ctrl_break(bool setting)
{
    return setting ? noraw() : raw();
}
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-pdcurses

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

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