ridiculousfish / cdecl-blocks

The venerable cdecl, with Apple blocks support
977 stars 75 forks source link

removed restrict as variable #41

Closed Raphael-08 closed 6 months ago

Raphael-08 commented 6 months ago

In the C programming language, restrict is a keyword, introduced by the C99 standard, that can be used in pointer declarations. By adding this type qualifier, a programmer hints to the compiler that for the lifetime of the pointer, no other pointer will be used to access the object to which it points.

ridiculousfish commented 6 months ago

Thank you!