Changeset 7258c6a in buchla-68k for vlib/vputsv.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/vputsv.c

    r0292fbb r7258c6a  
    1414#include "stddefs.h"
    1515
    16 typedef unsigned int    uint;
    17 
    18 extern  void    vputcv(unsigned *adr, unsigned row, unsigned col, unsigned char, unsigned atr, unsigned cols);
     16extern  void    vputcv(uint16_t *adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols);
    1917
    2018/*
     
    2725*/
    2826
    29 void vputsv(uint *sbase, uint row, uint col, char *str, uint attrib, uint len)
     27void vputsv(uint16_t *sbase, uint16_t row, uint16_t col, int8_t *str, uint16_t attrib, uint16_t len)
    3028{
    31         uint    c;
     29        uint16_t        c;
    3230
    3331        while (c = *str++) {
     
    5856*/
    5957
    60 void vputsav(uint *sbase, uint row, uint col, char *str, uint *attrib, uint len)
     58void vputsav(uint16_t *sbase, uint16_t row, uint16_t col, int8_t *str, uint16_t *attrib, uint16_t len)
    6159{
    62         uint    c;
     60        uint16_t        c;
    6361
    6462        while (c = *str++) {
Note: See TracChangeset for help on using the changeset viewer.