Wladimir [ARCHIVE] on Nostr: ๐
Original date posted:2014-10-14 ๐ Original message:On Tue, Oct 14, 2014 at ...
๐
Original date posted:2014-10-14
๐ Original message:On Tue, Oct 14, 2014 at 9:27 AM, Thomas Zander <thomas at thomaszander.se> wrote:
> On Tuesday 14. October 2014 04.34.16 Pieter Wuille wrote:
>> This means that scripts that use booleans as inputs will be inherently
>> malleable.
>
> I've ran into this issue in C++ often enough,
> a funny example is assigning "2" to a native c++ bool and then you can do a
> if (myBool == true)
> else if (myBool == false)
> and neither of them will hit.
Off topic nit: I think you're confused with custom BOOL typedefs in C?
C++ booleans are protected against this (C++ standard ยง4.7/4 according
to Google).:
```
#include <stdio.h>
int main()
{
bool myBool;
myBool = 2;
if (myBool == true)
printf("It is true!\n");
else if (myBool == false)
printf("It is false!\n");
else
printf("It is something else!\n");
}
```
Prints 'It is true'. You can also use bool(something) as equivalent of
`x != 0`; as in `assert(bool(2) == true);`.
Wladimir
Published at
2023-06-07 15:26:28Event JSON
{
"id": "87ad87903160986b20c4a2c24ca7539c56edc86011180bedfd8a3d30dd0bf93b",
"pubkey": "30217b018a47b99ed4c20399b44b02f70ec4f58ed77a2814a563fa28322ef722",
"created_at": 1686151588,
"kind": 1,
"tags": [
[
"e",
"c83f6dedf4ca7c81a89476f7b8b9b295fef9059bd827880a0f714bdd8244a34b",
"",
"root"
],
[
"e",
"9f6e45fbf317fd14e900188a96785bd17e3dfcd9af4b6b2a6353e912fbd830fa",
"",
"reply"
],
[
"p",
"4aa6cf9aa5c8e98f401dac603c6a10207509b6a07317676e9d6615f3d7103d73"
]
],
"content": "๐
Original date posted:2014-10-14\n๐ Original message:On Tue, Oct 14, 2014 at 9:27 AM, Thomas Zander \u003cthomas at thomaszander.se\u003e wrote:\n\u003e On Tuesday 14. October 2014 04.34.16 Pieter Wuille wrote:\n\u003e\u003e This means that scripts that use booleans as inputs will be inherently\n\u003e\u003e malleable.\n\u003e\n\u003e I've ran into this issue in C++ often enough,\n\u003e a funny example is assigning \"2\" to a native c++ bool and then you can do a\n\u003e if (myBool == true)\n\u003e else if (myBool == false)\n\u003e and neither of them will hit.\n\nOff topic nit: I think you're confused with custom BOOL typedefs in C?\nC++ booleans are protected against this (C++ standard ยง4.7/4 according\nto Google).:\n\n```\n#include \u003cstdio.h\u003e\n\nint main()\n{\n bool myBool;\n myBool = 2;\n if (myBool == true)\n printf(\"It is true!\\n\");\n else if (myBool == false)\n printf(\"It is false!\\n\");\n else\n printf(\"It is something else!\\n\");\n}\n```\n\nPrints 'It is true'. You can also use bool(something) as equivalent of\n`x != 0`; as in `assert(bool(2) == true);`.\n\nWladimir",
"sig": "2acc6aaae41c4238f8a617542d511cb0935678b566326cfea4fde7541c9a516f2945a6c8cdc16a4c28b6212692793e32bc26702ca4e14713f2f27e8578f34c86"
}