view uptools/libcoding/alpha_addr.c @ 416:30f6d1c32c6f

doc/Flash-boot-defect article removed (no longer relevant) This article is no longer relevant because the issue in question only affected one (1) defective FCDEV3B board which was not and never will be sold.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 26 Oct 2018 07:11:08 +0000
parents 74d5e95ee84a
children
line wrap: on
line source

/*
 * This library module contains some bits that help working with
 * alphabetic addresses.
 */

#include <sys/types.h>

u_char alpha_septets_to_digits[12] = {0, 2, 4, 6, 7, 9, 11, 13, 14, 16, 18, 20};

alpha_addr_valid(ndigits, sepp)
	unsigned ndigits, *sepp;
{
	unsigned n;

	for (n = 1; n <= 11; n++)
		if (alpha_septets_to_digits[n] == ndigits) {
			*sepp = n;
			return(1);
		}
	return(0);
}