Skip to content

Instantly share code, notes, and snippets.

@serious-angel
Last active December 25, 2024 23:02
Show Gist options
  • Save serious-angel/13043920cbbe591d9e047495221fc310 to your computer and use it in GitHub Desktop.
Save serious-angel/13043920cbbe591d9e047495221fc310 to your computer and use it in GitHub Desktop.
#include <sys/ioctl.h>
#include <unistd.h>
#include <stdio.h>
int main(void)
{
struct winsize ws;
ioctl(STDIN_FILENO, TIOCGWINSZ, &ws);
printf("%dx%d\n", ws.ws_row, ws.ws_col);
return 0;
}

Compiler Version

$ gcc --version
gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Copyright (C) 2021 Free Software Foundation, Inc.

Compile

$ gcc -o wins ./wins.c && file ./wins;
./wins: ELF 64-bit LSB pie executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=11f27920313b68ab81582d561d64447ace7afdee, for GNU/Linux 3.2.0, not stripped

Execute

$ ./wins;
32x140
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment