misc/vim: inform the user when no results are found
[nit.git] / c_src / string_nit.h
1 #ifndef __STRING_NIT_H
2 #define __STRING_NIT_H
3 #include <stdio.h>
4 #include <stdlib.h>
5 /* This file is part of NIT ( http://www.nitlanguage.org ).
6 *
7 * This file is free software, which comes along with NIT. This software is
8 * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
10 * PARTICULAR PURPOSE. You can modify it is you want, provided this header
11 * is kept unaltered, and a notification of the changes is added.
12 * You are allowed to redistribute it and sell it, alone or is a part of
13 * another product.
14 */
15
16 long native_int_length_str(long recv);
17 void native_int_to_s(long recv, char* str, long buflen);
18
19 #endif