Crossware

Table of Contents        Previous topic       Next topic       

C LIBRARY FUNCTIONS->Detailed Descriptions->putch()

Summary

#include <conio.h>
    
int putch(int ch);Write a character to console
    

Parameter

ch    An integer representing the character to be written.



Description

This function outputs the character to the console.  This function is implemention specific and will need to be created to suit your target system.

The UART Code Creation Wizards can automatically create the putch() function for you and insert it into your source code.


Return Value

The character written.