| 2273 | */ |
| 2274 | |
| 2275 | const char * /* O - Attribute name or @code NULL@ for separators */ |
| 2276 | ippGetName(ipp_attribute_t *attr) /* I - IPP attribute */ |
| 2277 | { |
| 2278 | /* |
| 2279 | * Range check input... |
| 2280 | */ |
| 2281 | |
| 2282 | if (!attr) |
| 2283 | return (NULL); |
| 2284 | |
| 2285 | /* |
| 2286 | * Return the name... |
| 2287 | */ |
| 2288 | |
| 2289 | return (attr->name); |
| 2290 | } |
| 2291 | |
| 2292 | |
| 2293 | /* |
no outgoing calls