Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/src/c/demos/edit/sheet.c

    rb7fd2a0 r70b570c  
    6767
    6868/** Initialize an empty sheet. */
    69 errno_t sheet_create(sheet_t **rsh)
     69int sheet_create(sheet_t **rsh)
    7070{
    7171        sheet_t *sh;
     
    9595 * @param str   The text to insert (printable characters, tabs, newlines).
    9696 *
    97  * @return      EOK on success or an error code.
     97 * @return      EOK on success or negative error code.
    9898 *
    9999 * @note        @a dir affects which way tags that were placed on @a pos will
     
    101101 *              and vice versa.
    102102 */
    103 errno_t sheet_insert(sheet_t *sh, spt_t *pos, enum dir_spec dir, char *str)
     103int sheet_insert(sheet_t *sh, spt_t *pos, enum dir_spec dir, char *str)
    104104{
    105105        char *ipp;
     
    145145 * @param epos  Ending point.
    146146 *
    147  * @return      EOK on success or an error code.
     147 * @return      EOK on success or negative error code.
    148148 **/
    149 errno_t sheet_delete(sheet_t *sh, spt_t *spos, spt_t *epos)
     149int sheet_delete(sheet_t *sh, spt_t *spos, spt_t *epos)
    150150{
    151151        char *spp;
Note: See TracChangeset for help on using the changeset viewer.