summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/assocptrbyname.c
blob: a33b367bcc26e2174692341bd998c57aac420bfd (plain) (tree)
1
2
3
4
5
6
7
8




                                          

   
                    


























                                                    
/**
 *  @file
 *
 *  @brief RTEMS Associate Pointer by Name
 *  @ingroup Associativity
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#define INSIDE_ASSOC

#include <rtems.h>
#include <rtems/assoc.h>

#include <string.h>             /* strcat, strcmp */


const rtems_assoc_t *rtems_assoc_ptr_by_name(
  const rtems_assoc_t *ap,
  const char          *name
)
{
  const rtems_assoc_t *default_ap = 0;

  if (rtems_assoc_is_default(ap))
    default_ap = ap++;

  for ( ; ap->name; ap++)
    if (strcmp(ap->name, name) == 0)
	return ap;

  return default_ap;
}