mirror of
https://github.com/RangeNetworks/openbts.git
synced 2025-10-23 07:42:01 +00:00
31 lines
692 B
C++
31 lines
692 B
C++
/*
|
|
* Copyright 2008 Free Software Foundation, Inc.
|
|
*
|
|
* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
|
|
*
|
|
* This use of this software may be subject to additional restrictions.
|
|
* See the LEGAL file in the main directory for details.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GSM610TABLES_H
|
|
#define GSM610TABLES_H
|
|
|
|
|
|
|
|
namespace GSM {
|
|
|
|
/** Table #2 from GSM 05.03 */
|
|
extern const unsigned int g610BitOrder[260];
|
|
|
|
}
|
|
|
|
|
|
#endif
|