Changeset 7258c6a in buchla-68k for vlib/vputs.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vputs.c

    r0292fbb r7258c6a  
    1414#include <stddefs.h>
    1515
    16 typedef unsigned int    uint;
    17 
    18 extern  void    vputc(unsigned *sbase, unsigned row, unsigned col, unsigned c, unsigned attrib);
     16extern  void    vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);
    1917
    2018/*
     
    2725*/
    2826
    29 void vputs(uint *sbase, uint row, uint col, uint attrib, char *str)
     27void vputs(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t attrib, int8_t *str)
    3028{
    31         uint    c;
     29        uint16_t        c;
    3230
    3331        while (c = *str++) {
     
    5755*/
    5856
    59 void vputsa(uint *sbase, uint row, uint col, uint *attrib, char *str)
     57void vputsa(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t *attrib, int8_t *str)
    6058{
    61         uint    c;
     59        uint16_t        c;
    6260
    6361        while (c = *str++) {
Note: See TracChangeset for help on using the changeset viewer.