Import ncpfs 2.2.1
This commit is contained in:
@@ -15,11 +15,19 @@
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
Revision history:
|
||||
|
||||
0.00 1997 Arne de Bruijn
|
||||
Initial release.
|
||||
0.01 1997 Petr Vandrovec <vandrove@vc.cvut.cz>
|
||||
Remove shuffle.
|
||||
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "ndscrypt.h"
|
||||
#include "ncplib.h"
|
||||
#include <ncp/ncplib.h>
|
||||
|
||||
static unsigned int rol16(unsigned int i, int c) {
|
||||
return ((i << c) & 65535) | ((unsigned int)(i & 65535) >> (16 - c));
|
||||
|
||||
Reference in New Issue
Block a user