<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ahmed Mohyeldin</title>
    <description>The latest articles on DEV Community by Ahmed Mohyeldin (@mohyeldinx).</description>
    <link>https://dev.to/mohyeldinx</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4039414%2F0d71b148-bcc9-43c0-b21a-13b707d1a067.jpg</url>
      <title>DEV Community: Ahmed Mohyeldin</title>
      <link>https://dev.to/mohyeldinx</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohyeldinx"/>
    <language>en</language>
    <item>
      <title>Introducing ConVTS: a C/C++ Library for Modern Terminal Applications</title>
      <dc:creator>Ahmed Mohyeldin</dc:creator>
      <pubDate>Tue, 21 Jul 2026 07:25:56 +0000</pubDate>
      <link>https://dev.to/mohyeldinx/introducing-convts-a-cc-library-for-modern-terminal-applications-167p</link>
      <guid>https://dev.to/mohyeldinx/introducing-convts-a-cc-library-for-modern-terminal-applications-167p</guid>
      <description>&lt;p&gt;I just released &lt;strong&gt;ConVTS v0.9.0-beta&lt;/strong&gt;, a zero-dependency C/C++ library for building modern console and CLI applications.&lt;/p&gt;

&lt;p&gt;ConVTS provides ANSI/VT sequence generation, command execution helpers, raw terminal input, keyboard parsing, mouse parsing, terminal dimensions, and terminal state handling.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/MohyeldinX/ConVTS" rel="noopener noreferrer"&gt;https://github.com/MohyeldinX/ConVTS&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Intro video: &lt;a href="https://youtu.be/vM7oZJfklX0?si=fLOTEOacFUjKx4Qk" rel="noopener noreferrer"&gt;https://youtu.be/vM7oZJfklX0?si=fLOTEOacFUjKx4Qk&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is a public beta, and I would really appreciate feedback from C, C++, systems, tooling, terminal, and CLI developers before the 1.0 release.&lt;/p&gt;
&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Terminal control in C and C++ often lives in an awkward place.&lt;/p&gt;

&lt;p&gt;At one end, you can manually write escape sequences like &lt;code&gt;"\x1b[31m"&lt;/code&gt; and hope the code stays readable. At the other end, you can use a larger UI framework that may be more than you need for a small CLI tool, teaching example, terminal demo, or lightweight TUI.&lt;/p&gt;

&lt;p&gt;I wanted something in the middle:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Small enough to understand.&lt;/li&gt;
&lt;li&gt;Direct enough for C and C++ courses.&lt;/li&gt;
&lt;li&gt;Useful enough for professional CLI tools.&lt;/li&gt;
&lt;li&gt;Cross-platform.&lt;/li&gt;
&lt;li&gt;Zero-dependency.&lt;/li&gt;
&lt;li&gt;Available as both header-only and compiled library.&lt;/li&gt;
&lt;li&gt;Friendly to C, but with clean C++ wrappers.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That became &lt;strong&gt;ConVTS&lt;/strong&gt;, short for &lt;strong&gt;Console Virtual Terminal Sequences Support Library&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The library is organized into three main modules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;ConVTS-SEQ:&lt;/strong&gt; generate ANSI/VT escape sequence strings.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ConVTS-CMD:&lt;/strong&gt; execute terminal commands by writing sequences to &lt;code&gt;stdout&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ConVTS-IO:&lt;/strong&gt; handle raw mode, keyboard input, mouse input, terminal dimensions, and terminal state.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Header-only usage
&lt;/h2&gt;

&lt;p&gt;ConVTS can be used in an STB-style header-only mode.&lt;/p&gt;

&lt;p&gt;Define &lt;code&gt;CONVTS_IMPLEMENTATION&lt;/code&gt; in exactly one source file before including the umbrella header:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="cp"&gt;#define CONVTS_IMPLEMENTATION
#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;stdio.h&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;convts/convts.h&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
&lt;/span&gt;
&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;void&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_screen_clear&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_cursor_move_home&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="n"&gt;vts_cmd_style_set_fg_16&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;VTS_COLOR_GREEN&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_style_set_bold&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="n"&gt;puts&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello from ConVTS"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="n"&gt;vts_cmd_style_reset&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_flush&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In larger projects, only one &lt;code&gt;.c&lt;/code&gt; or &lt;code&gt;.cpp&lt;/code&gt; file should define &lt;code&gt;CONVTS_IMPLEMENTATION&lt;/code&gt;. Other files should include the header normally:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="cp"&gt;#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;convts/convts.h&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This mode is useful for small tools, examples, experiments, courses, and projects where you want simple integration.&lt;/p&gt;

&lt;h2&gt;
  
  
  Compiled-library usage
&lt;/h2&gt;

&lt;p&gt;ConVTS can also be built as a static or shared library.&lt;/p&gt;

&lt;p&gt;In that mode, your application does not define &lt;code&gt;CONVTS_IMPLEMENTATION&lt;/code&gt;. It just includes the header and links against the compiled target.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="cp"&gt;#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;stdio.h&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;convts/convts.h&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
&lt;/span&gt;
&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;void&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_screen_clear&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_cursor_move_home&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="n"&gt;vts_cmd_style_set_fg_16&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;VTS_COLOR_CYAN&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="n"&gt;puts&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello from a compiled ConVTS build."&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="n"&gt;vts_cmd_style_reset&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="n"&gt;vts_cmd_flush&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;With CMake:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight cmake"&gt;&lt;code&gt;&lt;span class="nb"&gt;find_package&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;convts REQUIRED&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="nb"&gt;add_executable&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;my_app main.c&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nb"&gt;target_link_libraries&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;my_app PRIVATE convts::convts&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This mode is better for larger applications, shared codebases, packaging, installation, and normal library consumption.&lt;/p&gt;

&lt;h2&gt;
  
  
  C and C++ API comparison
&lt;/h2&gt;

&lt;p&gt;The C API is the main API. It is flat, explicit, and predictable:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="n"&gt;vts_cmd_screen_clear&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="n"&gt;vts_cmd_cursor_move_home&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="n"&gt;vts_cmd_style_set_fg_16&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;VTS_COLOR_GREEN&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;vts_cmd_style_set_bold&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="n"&gt;puts&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello from C"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="n"&gt;vts_cmd_style_reset&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="n"&gt;vts_cmd_flush&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The C++ wrappers map directly to the same behavior using namespaces:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight cpp"&gt;&lt;code&gt;&lt;span class="cp"&gt;#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;cstdio&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
#include&lt;/span&gt; &lt;span class="cpf"&gt;&amp;lt;convts/convts.h&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;
&lt;/span&gt;
&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;vts&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cmd&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;screen&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;clear&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="n"&gt;vts&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cmd&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cursor&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;move_home&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="n"&gt;vts&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cmd&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;style&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;set_fg_16&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;VTS_COLOR_GREEN&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="n"&gt;vts&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cmd&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;style&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;set_bold&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;puts&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello from C++"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="n"&gt;vts&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cmd&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;style&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;reset&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="n"&gt;vts&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cmd&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;flush&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The goal is not to hide the terminal model behind a large abstraction. The goal is to make the terminal model easier, safer, and more readable while keeping the code close to what is actually happening.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEQ vs CMD
&lt;/h2&gt;

&lt;p&gt;ConVTS separates sequence generation from command execution.&lt;/p&gt;

&lt;p&gt;If you want to generate an escape sequence string without writing it immediately, use &lt;strong&gt;SEQ&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;seq&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;vts_style_set_fg_16&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;VTS_COLOR_RED&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;fputs&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;seq&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;stdout&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you want to execute the command directly, use &lt;strong&gt;CMD&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="n"&gt;vts_cmd_style_set_fg_16&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;VTS_COLOR_RED&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This keeps both low-level and high-level workflows available.&lt;/p&gt;

&lt;p&gt;Library authors, renderers, and buffered systems may prefer SEQ. Application code and demos may prefer CMD.&lt;/p&gt;

&lt;h2&gt;
  
  
  Console input and terminal state
&lt;/h2&gt;

&lt;p&gt;ConVTS also includes input and state helpers through &lt;strong&gt;ConVTS-IO&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The IO module supports features such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Raw mode.&lt;/li&gt;
&lt;li&gt;Terminal size queries.&lt;/li&gt;
&lt;li&gt;Keyboard input parsing.&lt;/li&gt;
&lt;li&gt;Mouse input parsing.&lt;/li&gt;
&lt;li&gt;Input-buffer helpers.&lt;/li&gt;
&lt;li&gt;Terminal setup and cleanup workflows.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is useful when building interactive CLI tools, small terminal games, input demos, dashboards, and text-based interfaces.&lt;/p&gt;

&lt;h2&gt;
  
  
  Examples included
&lt;/h2&gt;

&lt;p&gt;The repository includes several examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;hello_world&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;hello_world_compiled&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dashboard&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;sandbox&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;snake&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;demo_io&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most examples are written to demonstrate header-only usage clearly. The &lt;code&gt;hello_world_compiled&lt;/code&gt; example demonstrates linking against ConVTS as a compiled library.&lt;/p&gt;

&lt;p&gt;The purpose of the examples is not only testing. They are also meant to teach users how to integrate the library in real projects.&lt;/p&gt;

&lt;h2&gt;
  
  
  Documentation and build support
&lt;/h2&gt;

&lt;p&gt;The repository includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;README.md&lt;/code&gt; for the project overview.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;BUILDING.md&lt;/code&gt; for CMake, installation, and integration.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;CONTRIBUTING.md&lt;/code&gt; for contribution workflow.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;DEVELOPER.md&lt;/code&gt; for architecture, naming, formatting, and development rules.&lt;/li&gt;
&lt;li&gt;Generated Doxygen API documentation under &lt;code&gt;docs/api/html&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;ConVTS currently supports C99 and C++11, and the CI matrix builds and tests the project across header-only, static library, and shared library modes.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I want feedback on before 1.0
&lt;/h2&gt;

&lt;p&gt;This is a beta release, so I am especially interested in feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API naming.&lt;/li&gt;
&lt;li&gt;C API usability.&lt;/li&gt;
&lt;li&gt;C++ wrapper naming and ergonomics.&lt;/li&gt;
&lt;li&gt;CMake integration.&lt;/li&gt;
&lt;li&gt;Documentation clarity.&lt;/li&gt;
&lt;li&gt;Missing examples.&lt;/li&gt;
&lt;li&gt;Terminal compatibility.&lt;/li&gt;
&lt;li&gt;Raw input and mouse behavior.&lt;/li&gt;
&lt;li&gt;Anything that would make the library easier to teach or adopt.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you work with C, C++, CLI tools, terminal applications, or teaching systems programming, I would really appreciate your thoughts.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/MohyeldinX/ConVTS" rel="noopener noreferrer"&gt;https://github.com/MohyeldinX/ConVTS&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Intro video: &lt;a href="https://youtu.be/vM7oZJfklX0?si=ig0T95ArrTMsTaJI" rel="noopener noreferrer"&gt;https://youtu.be/vM7oZJfklX0?si=ig0T95ArrTMsTaJI&lt;/a&gt;&lt;/p&gt;

</description>
      <category>c</category>
      <category>cpp</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
