* Attribute name cannot begin with "builtin_" which * is a reserved namespace for built in attributes values. */
| 192 | * is a reserved namespace for built in attributes values. |
| 193 | */ |
| 194 | static int attr_name_reserved(const char *name) |
| 195 | { |
| 196 | return starts_with(name, "builtin_"); |
| 197 | } |
| 198 | |
| 199 | static int attr_name_valid(const char *name, size_t namelen) |
| 200 | { |
no test coverage detected