| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* add is_number_void()
* numericx_translate() was only handling a void number with one digit
as argument, for example a 0.
When encontering a void number with more then one digit, the function
was entering on a infinite cycle.
Now, with the function is_number_void(), numericx_translate() can
handle correctly void number with any number of cases. Either with a
from numerical system that is infinite (0 == 00 == 000 ...) or if it
is not (0 is void, 00 is concrete, 000 is concrete, ...)
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
|
| |
* numericx_translate() was doing a reverse of the string argument,
which it cannot. Now the reverse is using a malloced version of the
string argument.
* add free() to malloced number from number argument
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
| |
* remove print_numeral() from numericx.c
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
|
| |
* separate numericx into: numericx.h, numericx.c, cli.c
* numericx.h is the numericx library header
* numericx.c is the numericx library implementation
* cli.c is the numericx command-line program
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
| |
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
| |
* If invalid number of arguments supplied to main(), return errno E2BIG
* add Makefile rule to test memory leak of wrong number of arguments to
main()
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
|
|
|
| |
* numericx_translate() only returns status codes. Instead of returning
the resulting translated string.
* add result_string to numericx_translate() arguments, that is the
variable to where to store the resulting translated string.
* for the cli program, now the message is delegated to main. Also
changed the doxygen comments of main().
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
| |
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
| |
* add numericx_free() and numericx_translate()
* functionality in main() to the minimum, to house the
numericx_translate() in it
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
| |
* remove debug message printing and the DEBUG variable
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
| |
* transformed comments into doxygen comments and set it's attributes
* add doxygen.conf file
* add doxygen html documentation
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* add better comments to the code structure
* on decrement_number_string(), renamed arguments for better legibility
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
| |
* invalid numeral error message now indicates which numerals are valid
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* optimizes main counting cycle if TO_INFINITE_BASE is set,
by adding to_second variable
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* make program name into the macro PROG_NAME
* add program name into all error messages
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
| |
* add mem rule to Makefile
* add free_numeral()
* free all memory allocations
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* add is_valid_number()
* check if number belongs to the 'from' numerical system
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* print_numeral() without '\n'
* more compact DEBUG message
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* add to increment() one more argument (char* brand_new_digit)
* add TO_INFINITE_BASE functionality
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* defines both (TO and FROM)_INFINITE_BASE
* add FROM_INFINITE_BASE functionality
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
* add decrement_number_string()
* add (FROM and TO)_FIRST_NUMBER_VOID flags
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
| |
compilation flags are defined as true by default.
rearrange them.
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
|
|
| |
* add reverse_string()
* number variable instead of number_first/number_last
* add flags TO_UNITS_ON_THE_END and FROM_UNITS_ON_THE_END
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
|
|
| |
add usage message when invalid argument
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
|
|
| |
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|
|
Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
|