And while we're at it, C11 adds some keywords like _Atomic as well.
Is this the right way to submit requests for addition, or would it be better to ask for it in the 'Google Code Prettify' project?
EDIT: I checked the prettify source repository (read-only, svn revision 194), and would suggest to change the variable C_KEYWORDS in src/prettify.js, line 70, to:
var C_KEYWORDS = [FLOW_CONTROL_KEYWORDS,"auto,case,char,const,default," +
"double,enum,extern,float,goto,int,long,register,short,signed,sizeof," +
"static,struct,switch,typedef,union,unsigned,void,volatile," +
"_Alignas,_Alignof,_Atomic,_Bool,_Complex,_Generic,_Imaginary," +
"_Noreturn,_Static_assert,_Thread_local,inline,restrict"];
Especially inline and restrict are omissions from C99.
If you wish, you might also include the more common variants (but formally not defined as keywords):
var C_KEYWORDS = [FLOW_CONTROL_KEYWORDS,"auto,case,char,const,default," +
"double,enum,extern,float,goto,int,long,register,short,signed,sizeof," +
"static,struct,switch,typedef,union,unsigned,void,volatile," +
"_Alignas,_Alignof,_Atomic,_Bool,_Complex,_Generic,_Imaginary," +
"_Noreturn,_Static_assert,_Thread_local,inline,restrict," +
"alignas,alignof,atomic,bool,complex,generic,imaginary," +
"noreturn,static_assert,thread_local"];
Refer to the most recent C standard ISO/IEC 9899:2011 for details.
EDIT2: I sent an email to the author of prettify as well.