/* * Copyright (C) 2005 Network Applied Communication Laboratory Co., Ltd. * * This file is part of Rast. * See the file COPYING for redistribution information. * */ #ifndef RAST_PACK_H #define RAST_PACK_H int rast_pack_number_length(int n); int rast_pack_number(char *s, int n); int rast_unpack_number(const char *s, int len, int *np); #endif /* vim: set filetype=c sw=4 expandtab : */