Full prototype:
struct lconv* localeconv(void);  
Purpose and Notes:
Returns a pointer to the static struct variable lconv for which the user can then read from to determine what the current formatting rules are for the current set locale.
Returns:
struct lconv*- A pointer to the static variable that is holds all of the current formatting information for the set locale.
Argument 1:
void- No argument.