コード例 #1
0
// This starts or ends a cell, or does both
void Stack::push_pop_cell(int dir)
{
  if(dir != push_only) { pop(np_cell); add_nl(); }
  if(dir != pop_only) { push1(np_cell); }
}
コード例 #2
0
ファイル: main.c プロジェクト: slagterfranz/liborder-system
int main () {
    char oat[100];
    strncpy(oat, "hello", 100);
    add_nl(oat);
    to_saves(oat);
}