v86/tests/kvm-unit-tests/lib/util.c
2020-07-21 20:10:11 -05:00

20 lines
320 B
C

/*
* Copyright (C) 2016, Red Hat Inc, Andrew Jones <drjones@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.
*/
#include <libcflat.h>
#include "util.h"
int parse_keyval(char *s, long *val)
{
char *p;
p = strchr(s, '=');
if (!p)
return -1;
*val = atol(p+1);
return p - s;
}