1/*
2 * BCJ filter for little endian ARM instructions
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10package org.tukaani.xz.simple;
11
12public interface SimpleFilter {
13    int code(byte[] buf, int off, int len);
14}
15