>FILE Encapsulation: In previous versions, the FILE type was completely defined in <stdio.h>, so it was possible for user code to reach into a FILE and muck with its internals. We have refactored the stdio library to improve encapsulation of the library implementation details. As part of this, FILE as defined in <stdio.h> is now an opaque type and its members are inaccessible from outside of the CRT itself.
Besides fixing bad C code: how many of those packages are still properly maintained? The Ruby ones don't seem to be. Fedora and other distros likely have to build their packages with patches.
>> CRuby actually ships with 90 encodings (as of 3.3)
>This is asinine.
Overall there are even more: 103. But then again 1.9.2 only has 85 and 95 overall. Also one of those new 'overall' ones is the EBCDIC code page for US/Canada.
People just have to look at the politicians and parties he's supporting. For example in the last French presidential election he opposed the pro-capitalist liberal (redundant as liberals are by definition pro-capitalism). I wonder what's his opinion on the Brazil one. A moderate social democrat vs. fascist belonging to a party called the "Social Liberal Party"?
He's not even a good source of information as his 3 hours long videos consist of Wikipedia articles he glanced through and repeating extreme right-wing conspiracies (Cultural Marxism, the terrorist attack at the Unite the Right rally).
(Also the only decent anti-idpol people are Marxists.)
Cultural Marxism isn't real. It's a Neo-Nazi conspiracy theory popularized by a right-wing terrorist. If fascism actually has arrived, you played a part in it. Your views on economic and social policies do too but propertarians like you don't understand fascism and reduce it to authoritarianism.
>discrediting political opponents [...] and inciting racial conflict to sow instability among Americans
Your mass media/ruling class does that too (especially on the political right). And they have much more influence than some largely unknown YT channel allegedly backed by Russia.
Where does the article say that? The US president is mentioned because there seem to be people tired of hearing about him and to be honest, US politics are really toxic - even without him.
>They could have made it unsigned instead of signed
C actually didn't have unsigned integer types in the beginning. They were added many years later and also not at the same time. For example, the Unix V7 C compiler only had "unsigned int".
That's unnecessary. But then again I can't really blame them. It isn't always clear when you have to do that. Also a previous version might have used strlen() instead of sizeof.
>FILE Encapsulation: In previous versions, the FILE type was completely defined in <stdio.h>, so it was possible for user code to reach into a FILE and muck with its internals. We have refactored the stdio library to improve encapsulation of the library implementation details. As part of this, FILE as defined in <stdio.h> is now an opaque type and its members are inaccessible from outside of the CRT itself.
https://devblogs.microsoft.com/cppblog/c-runtime-crt-feature...