mirror of
https://github.com/samba-team/samba.git
synced 2025-06-22 07:17:05 +03:00
Imported from git://git.ozlabs.org/~ccan/ccan init-1161-g661d41f Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
23 lines
417 B
C
23 lines
417 B
C
#include <ccan/asearch/asearch.h>
|
|
#include <ccan/array_size/array_size.h>
|
|
#include <ccan/tap/tap.h>
|
|
#include <stdlib.h>
|
|
|
|
static int cmp(const int *key, const char *const *elem)
|
|
{
|
|
return *key - atoi(*elem);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
const char *args[] = { "1", "4", "7", "9" };
|
|
int key = 7;
|
|
const char **p;
|
|
|
|
plan_tests(1);
|
|
p = asearch(&key, args, ARRAY_SIZE(args), cmp);
|
|
ok1(p == &args[2]);
|
|
|
|
return exit_status();
|
|
}
|