else.c

来自「indent为linux下代码自动格式化工具」· C语言 代码 · 共 50 行

C
50
字号
cmd_tab (n)     int n;{  int i, pos, col;  if (tabch)    {      i = 0;      ch = tabch;      while (tabstop[i] <= vcol)	i++;      do	{	  pos = tabstop[i++];	  col = vcol;	  if (overwrite)	    do	      {		FWD;	      }	    while (pos > vcol && vcol > col);	  else	    do	      {		ch = tabch;		ch1 = tabch2;		inst_ch (0);	      }	    while (pos > vcol && vcol > col);	}      while (--n > 0);      return (kcol = 0);    }  if (overwrite)    {      do	{	  do	    {	      FWD;	    }	  while (vcol & TABCNT);	}      while (--n > 0);      return (0);    }  return (inst_ch (n));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?