Import ncpfs 2.2.1

This commit is contained in:
ncpfs archive import
2026-04-28 20:39:59 +02:00
parent 0979ae6a41
commit 82706139bf
547 changed files with 176953 additions and 12604 deletions

View File

@@ -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));