File: abookfind.c

package info (click to toggle)
cone 0.84-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 26,812 kB
  • ctags: 14,812
  • sloc: ansic: 95,492; cpp: 80,924; sh: 11,244; perl: 3,157; makefile: 1,618; yacc: 291; sed: 16
file content (25 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* $Id: abookfind.c,v 1.2 2006/02/12 17:59:56 mrsam Exp $
**
** Copyright 2006, Double Precision Inc.
**
** See COPYING for distribution information.
*/

#include	"config.h"
#include	"ldapaddressbook.h"

#include	<stdio.h>
#include	<string.h>
#include	<stdlib.h>

const struct ldapabook *ldapabook_find(const struct ldapabook *l,
					const char *n)
{
	while (l)
	{
		if (strcmp(l->name, n) == 0)	return (l);

		l=l->next;
	}
	return (0);
}