You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue here is the use of format and printf without the leading and trailing __. This usage is "correct", but the form with the underscores is preferred because it lies in the namespace reserved to the implementation and thus should not be subject to problems if, for instance, printf() or format are names of macros.
The text was updated successfully, but these errors were encountered:
This problem is distinct from issue #94, but manifests on the same input.
Given the following input:
upc2c is producing the following output:
The issue here is the use of
format
andprintf
without the leading and trailing__
. This usage is "correct", but the form with the underscores is preferred because it lies in the namespace reserved to the implementation and thus should not be subject to problems if, for instance,printf()
orformat
are names of macros.The text was updated successfully, but these errors were encountered: