/* * assoc.c * rtems assoc routines * * $Id$ */ #if HAVE_CONFIG_H #include "config.h" #endif #define INSIDE_ASSOC #include #include #include /* strcat, strcmp */ uint32_t rtems_assoc_local_by_name( const rtems_assoc_t *ap, const char *name ) { const rtems_assoc_t *nap; nap = rtems_assoc_ptr_by_name(ap, name); if (nap) return nap->local_value; return 0; }