আমি আমার সি প্রোগ্রামের মধ্যে থেকে টার্মিনাল প্রস্থ পাওয়ার জন্য একটি উপায় খুঁজছি। আমি যা নিয়ে আসছি তা হ'ল লাইন দিয়ে কিছু:
#include <sys/ioctl.h>
#include <stdio.h>
int main (void)
{
struct ttysize ts;
ioctl(0, TIOCGSIZE, &ts);
printf ("lines %d\n", ts.ts_lines);
printf ("columns %d\n", ts.ts_cols);
}
তবে প্রতিবার আমি চেষ্টা করি যে আমি পেয়েছি
austin@:~$ gcc test.c -o test
test.c: In function ‘main’:
test.c:6: error: storage size of ‘ts’ isn’t known
test.c:7: error: ‘TIOCGSIZE’ undeclared (first use in this function)
test.c:7: error: (Each undeclared identifier is reported only once
test.c:7: error: for each function it appears in.)
এটি করার এটি কি সেরা উপায়, না এর থেকে আরও ভাল উপায় আছে? যদি না হয় তবে আমি কীভাবে এটি কাজ করতে পারি?
সম্পাদনা: স্থির কোড হয়
#include <sys/ioctl.h>
#include <stdio.h>
int main (void)
{
struct winsize w;
ioctl(0, TIOCGWINSZ, &w);
printf ("lines %d\n", w.ws_row);
printf ("columns %d\n", w.ws_col);
return 0;
}