We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
char *handle_d_i_specifier(const conversion_specification_t *spec, va_list argptr) { char *formatted_value = NULL, *temp = NULL; signed long int d, len; char sp = spec != NULL ? spec->conversion_specifier : 'Z';
if (sp == 'd' || sp == 'i') { d = handle_len_mod_for_signed(spec, argptr);
//////////////////////////////////////////////////////
long int handle_len_mod_for_signed(const conversion_specification_t *spec, va_list argptr) { long int value;
if (spec->length_modifier == NULL) value = va_arg(argptr, int); else if (spec->length_modifier[0] == 'h') value = (short int)va_arg(argptr, int);
The text was updated successfully, but these errors were encountered:
did u found any solution
Sorry, something went wrong.
just change the name of handle_len_mod_for_signed function to handle_len_mod_for_signed_int
betty-style is stupid aF
No branches or pull requests
char *handle_d_i_specifier(const conversion_specification_t *spec,
va_list argptr)
{
char *formatted_value = NULL, *temp = NULL;
signed long int d, len;
char sp = spec != NULL ? spec->conversion_specifier : 'Z';
//////////////////////////////////////////////////////
long int handle_len_mod_for_signed(const conversion_specification_t *spec,
va_list argptr)
{
long int value;
The text was updated successfully, but these errors were encountered: