radare2/libr/vapi/r_cons.vapi
pancake c5e588e6e5 * Initial import of libr
- Previous commits has been reported in the ChangeLog file
  - hg log has been lost (moved inside ChangeLog)
  - Old radare1 repository has removed all the libr
2009-02-05 22:08:46 +01:00

21 lines
728 B
Vala

/* radare - LGPL - Copyright 2009 pancake<nopcode.org> */
[CCode (cheader_filename="r_cons.h", cprefix="r_cons", lower_case_cprefix="r_cons_")]
namespace Radare {
[Compact]
[CCode (cname="struct r_cons_t", free_function="r_cons_free", cprefix="r_cons_")]
public class Cons {
public static void printf(string fmt, ...);
public static void strcat(string str);
public static void memcat(string str, int len);
public static void newline();
public static void flush();
//public static int fgets(out string buf, int len, int argc, string argv[]);
public static int readchar();
public static void any_key();
public static int eof();
public static int get_columns();
public static int get_real_columns();
}
}