Skip to content

Latest commit

 

History

History
35 lines (17 loc) · 866 Bytes

README.md

File metadata and controls

35 lines (17 loc) · 866 Bytes

bannerlib

This C library output text banners for windows cmd or linux terminal or you can compile it any where you want.

This lib now can output capital english letters only (work in progress to add more letters)

unfortunately the library can only print in one line till now :)

This lib has two functions which are

printmultiple(int count , char character) which prints multiple chars in one line.

for example:

printmultiple(3, '=');

the output will be: ===

The second function which is printBanner(char* text);

you can choose what you want according to your needs;

for example

printBanner((char*)"hello");

will output something like this

hello

you can use cmd arguments too as the example in my programs main function.