Giter Club home page Giter Club logo

prompt.h's Introduction

Simple looping interactive prompts

Tired of repeating myself, I wrote this simple module to grab user input (hopefully) securely.

Currently, only integer and single character input are supported.

Functions available

All functions are member of prompt structure, and should be called with dot operator, e.g. prompt.yesno("Are you hungry? ").

  • static int intrange(char* prompt, int min, int max)

    Integer prompt: min <= input <= max.

    When min > max, you'll get an endless loop.

  • static int intbetween(char* prompt, int min, int max)

    Integer prompt: min < input < max.

    When min > max, you'll get an endless loop.

  • static bool binopt(char* prompt, char opt_y, char opt_n)

    Binary options prompt, with case-insensitive input.

  • static bool yesno(char* prompt)

    Y/N prompt, a shorthand for bin_prompt(), with Y or N input.

Issue with musl

musl-gcc needs static flag, e.g.

musl-gcc -static demo.c prompt.c -o demo.out

Otherwise, valgrind will throw an error: __libc_freeres: symbol not found.

This error has been around sometime (GIYBF), but I haven't digged it any further.

Tested with musl 1.1.24-1 and valgrind 3.150 on Ubuntu 20.04.2 LTS (WSL 2).

Any contribution will be absolutely appreciated.

prompt.h's People

Contributors

geekobiloba avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.