C99,restrict

指针在声明的时候可以用关键字restrict修饰,如
int   *restrict   p;
将告诉编译器,指针p是访问p所指对象的唯一方式

原文地址:https://www.cnblogs.com/ymy124/p/2344459.html