ley0x / tchat-irc

A simple IRC tchat written in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tchat in C

Program that allow you to tchat with others.

Compilation :

Run the following command :

gcc main.c -o main

Usage :

To create a server run :

./main -s

Then, create a reader to read the incoming & outcoming messages :

./main -r <@IP> <port>

Finally, create a writer :

./main -w <@IP> <port> <pseudo>

Makefile helpers

Specials variables :

  • $@ nom cible
  • $< nom première dépendance
  • $^ liste dépendances
  • $? liste dépendances plus récentes que la cible
  • $* nom fichier, sans son extension

About

A simple IRC tchat written in C


Languages

Language:C 88.3%Language:Makefile 11.7%