Subversion Repositories HelenOS-historic

Rev

Rev 1485 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1485 Rev 1653
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup libc
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
 
35
 
30
#ifndef __LIBC__STRING_H__
36
#ifndef __LIBC__STRING_H__
31
#define __LIBC__STRING_H__
37
#define __LIBC__STRING_H__
32
 
38
 
33
#include <types.h>
39
#include <types.h>
Line 50... Line 56...
50
 
56
 
51
long int strtol(const char *nptr, char **endptr, int base);
57
long int strtol(const char *nptr, char **endptr, int base);
52
unsigned long strtoul(const char *nptr, char **endptr, int base);
58
unsigned long strtoul(const char *nptr, char **endptr, int base);
53
 
59
 
54
#endif
60
#endif
-
 
61
 
-
 
62
 
-
 
63
 /** @}
-
 
64
 */
-
 
65
 
-
 
66