in C/C++, its a keyword:
f(restrict char *a,
restrict char *b)
means that a
and b
are unique pointers to the objects to which they refer.
in C/C++, its a keyword:
f(restrict char *a,
restrict char *b)
means that a
and b
are unique pointers to the objects to which they refer.