File: bittest.h

package info (click to toggle)
dahdi-tools 1%3A3.1.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,416 kB
  • sloc: ansic: 54,472; perl: 4,031; sh: 2,618; makefile: 555; xml: 26
file content (17 lines) | stat: -rw-r--r-- 554 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2 as published by the
 * Free Software Foundation. See the LICENSE file included with
 * this program for more details.
 */

static int bit_next(int prev)
{
	return (prev + 1) % 256;
}