1 /* 2 * Copyright 2000 Finn Bock 3 * 4 * This program contains material copyrighted by: 5 * Copyright (c) Corporation for National Research Initiatives. 6 * Originally written by Marc-Andre Lemburg (mal@lemburg.com). 7 */ 8 9 package org.python.core; 10 11 public interface ucnhashAPI { 12 public int getCchMax(); 13 public int getValue(String s, int start, int end); 14 } 15