blob: b4bfc733b1ab94a4500f3e3a70cbf63d4a896bf4 [file] [log] [blame]
/* +++Date last modified: 05-Jul-1997 */
/*
** Make an ascii binary string into an integer.
**
** Public domain by Bob Stout
*/
#include <string.h>
#include "bitops.h"
unsigned int bstr_i(char *cptr)
{
unsigned int i, j = 0;
while (cptr && *cptr && strchr("01", *cptr))
{
i = *cptr++ - '0';
j <<= 1;
j |= (i & 0x01);
}
return(j);
}
#ifdef TEST
#include <stdlib.h>
int main(int argc, char *argv[])
{
char *arg;
unsigned int x;
while (--argc)
{
x = bstr_i(arg = *++argv);
printf("Binary %s = %d = %04Xh\n", arg, x, x);
}
return EXIT_SUCCESS;
}
#endif /* TEST */