Marin Ramesa, le Wed 11 Sep 2013 12:27:50 +0200, a écrit :
> Function cnputc() should never modify it's argument so qualify it
> with a const keyword.
> 
>  void
>  cnputc(c)
> -     char c;
> +     const char c;

Well, this is not really useful: the function gets a copy of the
argument anyway.

Samuel

Reply via email to