1 #ifndef _CGNAMES_H_
2 #define _CGNAMES_H_
3 int cg_get_identifier (const char *name, int *nexps, float *exps);
4 int cg_find_identifier (const char *pattern, int maxnames, char **names);
5 int cg_enum_identifier (int (*callback)(char *name,
6     int nexps, float *exps, void *user), void *user);
7 #endif
8 
9