replace PROG_NAME with "numericx" literal

* replaced PROG_NAME for string literal "numericx".
 * deleted macro definition of PROG_NAME.

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
This commit is contained in:
Daniel Santos 2022-03-19 07:43:14 +00:00
parent fcc6c957bf
commit f5421e7612
3 changed files with 6 additions and 7 deletions

10
cli.c
View File

@ -111,7 +111,7 @@ main(int argc, char* argv[])
/* argument processing */
if( !(argc == 2) )
{
fprintf(stderr, "usage: %s <number>\n", PROG_NAME);
fprintf(stderr, "usage: %s <number>\n", "numericx");
return E2BIG;
}
@ -144,19 +144,19 @@ main(int argc, char* argv[])
{
case EINVAL:
fprintf(stderr, "error: %s: %s. Resulting string argument value has to be NULL.\n",
PROG_NAME, strerror(EINVAL));
"numericx", strerror(EINVAL));
break;
case EDOM:
fprintf(stderr, "error: %s: %s. Valid numerals are: \"%s\".\n",
PROG_NAME, strerror(EDOM), from);
"numericx", strerror(EDOM), from);
break;
case ERANGE:
fprintf(stderr, "error: %s: Unrepresentable void number.\n", PROG_NAME);
fprintf(stderr, "error: %s: Unrepresentable void number.\n", "numericx");
break;
}
if( !(status == true) )
{
fprintf(stderr, "error: %s: Incapable of translating.\n", PROG_NAME);
fprintf(stderr, "error: %s: Incapable of translating.\n", "numericx");
free(from);
free(to);
numericx_free(result);

View File

@ -30,7 +30,7 @@ new_digit(numeral_ptr* last_numeral, char const* to_first)
numeral_ptr* new_numeral = malloc(sizeof(numeral_ptr));
if(new_numeral == NULL)
{
fprintf(stderr, "error: %s: %s!", PROG_NAME, strerror(ENOMEM));
fprintf(stderr, "error: %s: %s!", "numericx", strerror(ENOMEM));
return NULL;
}

View File

@ -6,7 +6,6 @@
#include <stdbool.h>
#define PROG_NAME "numericx"
/* ||DATA STRUCTURE|| */