C clip library

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
just a friend

C clip library

Post by just a friend »

I've read where lots of programmers are using Textpad. So I was surprised when I couldn't find a tcl for a blank c src file.

Wasn't hard to create one myself once I figured out how. To make it even easier on others, I've included the paltry source here:

Enjoy!

!TCL=6744,
!TITLE=C
!SORT=Y
!CHARSET=ANSI

!TEXT=Blank console src file^
#include <stdio.h>


int main(void)
{


\^

system("PAUSE");
return 0;
}
!
Post Reply