Changeset 77a194c in mainline for uspace/lib/c/include/imath.h


Ignore:
Timestamp:
2015-11-04T18:55:46Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
44183b98
Parents:
5265eea4 (diff), bfcde8d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge new disk partitioning architecture.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/imath.h

    r5265eea4 r77a194c  
    11/*
    2  * Copyright (c) 2012-2013 Dominik Taborsky
     2 * Copyright (c) 2015 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup hdisk
     29/** @addtogroup libc
    3030 * @{
    3131 */
    3232/** @file
     33 * @brief Integer math functions
    3334 */
    3435
    35 #ifndef __INPUT_H__
    36 #define __INPUT_H__
     36#ifndef LIBC_IMATH_H_
     37#define LIBC_IMATH_H_
    3738
    38 #include <tinput.h>
     39#include <stdint.h>
    3940
    40 extern int get_input_line(tinput_t *, char **);
    41 extern uint8_t get_input_uint8(tinput_t *);
    42 extern uint32_t get_input_uint32(tinput_t *);
    43 extern uint64_t get_input_uint64(tinput_t *);
    44 extern size_t get_input_size_t(tinput_t *);
     41extern int ipow10_u64(unsigned, uint64_t *);
     42extern unsigned ilog10_u64(uint64_t);
    4543
    4644#endif
     45
     46/**
     47 * @}
     48 */
Note: See TracChangeset for help on using the changeset viewer.