Re: GTK tables

2013-01-28 Thread David Buchan
Great! Thanks Tristan. Dave From: Tristan Van Berkom To: David Buchan Cc: gtk-app-devel-list list Sent: Monday, January 28, 2013 1:16 AM Subject: Re: GTK tables On Mon, Jan 28, 2013 at 4:42 AM, David Buchan wrote: > I've created a table with Glade and

Re: open an existing file in buffer and write on it

2013-01-28 Thread Damien Caliste
Hello, Le 25/01/2013, Rudra Banerjee a écrit : > What I have ended up with is something like: > FILE *fopf = fopen(filename, "a" ); > if (!fopf){ > filename="Untitled.bib"; > fopf= fopen(filename,"a"); > } > char buffer[]="Hello World"; > int buf_size= strlen(buffer)+1; > fwri