CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

printf wrapper function

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
newguy



Joined: 24 Jun 2004
Posts: 1903

View user's profile Send private message

printf wrapper function
PostPosted: Wed Mar 08, 2006 10:46 am     Reply with quote

I've searched the forum, but I can't find an explicit example of putting printf into a wrapper function. I need to prevent the compiler from putting all my printf's inline to save space.

Any ideas? What's throwing me is how do I declare the wrapper function? What's throwing me is how I declare the character string, as my printf's always direct the data to the 'bputc' function.

I typically use printf like this:

Code:
printf(bputc,"%u",some_data);


I'm thinking along the lines of:

Code:
void my_printf(char *s, int8 data) {
   printf(bputc,*s,data);
}


However, I'm really not sure. Anyone?
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Wed Mar 08, 2006 2:24 pm     Reply with quote

I don't think the printf format string can be a runtime parameter.
newguy



Joined: 24 Jun 2004
Posts: 1903

View user's profile Send private message

PostPosted: Wed Mar 08, 2006 2:47 pm     Reply with quote

'twas afraid of that.

Thanks PCM.
rwyoung



Joined: 12 Nov 2003
Posts: 563
Location: Lawrence, KS USA

View user's profile Send private message Send e-mail

PostPosted: Wed Mar 08, 2006 5:10 pm     Reply with quote

But if you have a lot of calls that match
Code:
printf("%u", my_variable);

Then you could write
Code:
void my_printf_u(unsigned my_var)
{
   printf("%u", my_var);
}


And write a similar one for each of the most common printfs you have in your code. May or may not save you code space, depends on how common your format strings are across all printfs
_________________
Rob Young
The Screw-Up Fairy may just visit you but he has crashed on my couch for the last month!
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group