aboutsummaryrefslogtreecommitdiff
path: root/src/charset.h
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-05-12 02:25:17 +0200
committerEliseo Martínez <eliseomarmol@gmail.com>2014-05-15 20:46:01 +0200
commitda51dc9cf202772f60bd2da975dbef257bd9237c (patch)
tree5c16b93238a153f55634e9323077f30c8133970c /src/charset.h
parentffe61e5ba1721340ca51d56bae3ddaca415fb5bc (diff)
downloadrneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.tar.gz
rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.tar.bz2
rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.zip
Introduce nvim namespace: Move files.
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
Diffstat (limited to 'src/charset.h')
-rw-r--r--src/charset.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/charset.h b/src/charset.h
deleted file mode 100644
index 169c83ccc1..0000000000
--- a/src/charset.h
+++ /dev/null
@@ -1,66 +0,0 @@
-#ifndef NEOVIM_CHARSET_H
-#define NEOVIM_CHARSET_H
-
-int init_chartab(void);
-int buf_init_chartab(buf_T *buf, int global);
-void trans_characters(char_u *buf, int bufsize);
-char_u *transstr(char_u *s);
-char_u *str_foldcase(char_u *str, int orglen, char_u *buf, int buflen);
-char_u *transchar(int c);
-char_u *transchar_byte(int c);
-void transchar_nonprint(char_u *buf, int c);
-void transchar_hex(char_u *buf, int c);
-int byte2cells(int b);
-int char2cells(int c);
-int ptr2cells(char_u *p);
-int vim_strsize(char_u *s);
-int vim_strnsize(char_u *s, int len);
-int chartabsize(char_u *p, colnr_T col);
-int linetabsize(char_u *s);
-int linetabsize_col(int startcol, char_u *s);
-int win_linetabsize(win_T *wp, char_u *p, colnr_T len);
-int vim_isIDc(int c);
-int vim_iswordc(int c);
-int vim_iswordc_buf(int c, buf_T *buf);
-int vim_iswordp(char_u *p);
-int vim_iswordp_buf(char_u *p, buf_T *buf);
-int vim_isfilec(int c);
-int vim_isfilec_or_wc(int c);
-int vim_isprintc(int c);
-int vim_isprintc_strict(int c);
-int lbr_chartabsize(unsigned char *s, colnr_T col);
-int lbr_chartabsize_adv(char_u **s, colnr_T col);
-int win_lbr_chartabsize(win_T *wp, char_u *s, colnr_T col, int *headp);
-int in_win_border(win_T *wp, colnr_T vcol);
-void getvcol(win_T *wp, pos_T *pos, colnr_T *start, colnr_T *cursor,
- colnr_T *end);
-colnr_T getvcol_nolist(pos_T *posp);
-void getvvcol(win_T *wp, pos_T *pos, colnr_T *start, colnr_T *cursor,
- colnr_T *end);
-void getvcols(win_T *wp, pos_T *pos1, pos_T *pos2, colnr_T *left,
- colnr_T *right);
-char_u *skipwhite(char_u *q);
-char_u *skipdigits(char_u *q);
-char_u *skiphex(char_u *q);
-char_u *skiptodigit(char_u *q);
-char_u *skiptohex(char_u *q);
-int vim_isdigit(int c);
-int vim_isxdigit(int c);
-int vim_islower(int c);
-int vim_isupper(int c);
-int vim_toupper(int c);
-int vim_tolower(int c);
-char_u *skiptowhite(char_u *p);
-char_u *skiptowhite_esc(char_u *p);
-long getdigits(char_u **pp);
-int vim_isblankline(char_u *lbuf);
-void vim_str2nr(char_u *start, int *hexp, int *len, int dooct,
- int dohex, long *nptr,
- unsigned long *unptr);
-int hex2nr(int c);
-int hexhex2nr(char_u *p);
-int rem_backslash(char_u *str);
-void backslash_halve(char_u *p);
-char_u *backslash_halve_save(char_u *p);
-
-#endif // NEOVIM_CHARSET_H