Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
aptitude(apt-get フロント エンド)のリストと同様に、ncurses を使用してスクロール可能なリストを作成しています。
aptitude
列間に埋め込みスペースを作成するにはどうすればよいですか? を使って各コラムを書く予定ですwprintw()。
wprintw()
例えば
pizza spicy 10 steak normal 10 burritoes guacamole 20
wprintw() を使用して各行。
次の例では、スペースが 2 つ埋め込まれ、左寄せされ、10 文字幅の文字列列があり、それぞれにスペースが続き、次に 2 桁の 10 進数列が続きます。
wprintw(win,"%-10s %-10s %2d\n", "pizza", "spicy", 10);