That's to signal that it's a long, rather than an int. Python automatically converts numbers that are big enough to a long, it still acts like an int though. No libraries needed![]()
Yeah, C++ unfortunately isn't that forgiving. It's actually really easy in PHP though, but you need either the gmp or bmath libraries. Then in C++, you have a openssl lib that gives you the BIGNUM data type, or you have things like the QCA Library.
Of course, they can't just work as expected though, and all have their little nuances. With QCA, doing x %= y simply doesn't work. You have to use something like m = x - ((x / d) * d). QCA likes to throw 0xFF in front of everything for no reason, and sometimes even seems to replace 0x00 with 0xFF for no reason too.
Oh well, I don't care any more, all resolved now and working fine now.
