input_conv 1.0.1

A basic stdio extension to automatically translate basic inputs to a given type
Documentation

#Input Conversion Crate

##This crate contains a simple library used for reading user input and saving the input to a variable with of a given type. ##This crate intends to simplify the way input from a user is read, avoiding the parsing of simple, single-type inputs.

Version 1.0.0: Added basic library for standard user inputs Version 1.0.1: Updated README

//Function names and return types:

pub fn read_string() -> String

pub fn read_u32() -> u32

pub fn read_i32() -> i32

pub fn read_u64() -> u64

pub fn read_i64() -> i64

pub fn read_f32() -> f32

pub fn read_f64() -> f64

pub fn read_u8() -> u8

pub fn read_char() -> char