jx_function.h
00001
00002
00003
00004
00005
00006
00007 #ifndef JX_FUNCTION_H
00008 #define JX_FUNCTION_H
00009
00010 #include "jx.h"
00011
00012 struct jx *jx_function_range(struct jx *args);
00013 struct jx *jx_function_format(struct jx *args);
00014 struct jx *jx_function_join(struct jx *args);
00015 struct jx *jx_function_ceil(struct jx *args);
00016 struct jx *jx_function_floor(struct jx *args);
00017 struct jx *jx_function_basename(struct jx *args);
00018 struct jx *jx_function_dirname(struct jx *args);
00019 struct jx *jx_function_listdir(struct jx *args);
00020 struct jx *jx_function_escape(struct jx *args);
00021
00022 #endif