예제 #1
0
/*
 * clears a tabstop at col
 */
void
TabClear(Tabs tabs, int col)
{
    if (col >= 0 && col < MAX_TABS) {
        CLR_TAB(tabs, col);
    }
}
예제 #2
0
파일: tabs.c 프로젝트: narenas/nx-libs
/*
 * clears a tabstop at col
 */
void
TabClear(Tabs tabs, int col)
{
    CLR_TAB(tabs, col);
}