abookfind.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #include "config.h"
  2. #include "ldapaddressbook.h"
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6. const struct ldapabook *ldapabook_find(const struct ldapabook *l,
  7. const char *n)
  8. {
  9. while (l)
  10. {
  11. if (strcmp(l->name, n) == 0) return (l);
  12. l=l->next;
  13. }
  14. return (0);
  15. }