Subversion Repositories HelenOS

Rev

Rev 1787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1866
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
29
/** @addtogroup libc
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
 
-
 
36
#ifndef __LIBC__STRING_H__
35
#ifndef LIBC_STRING_H_
37
#define __LIBC__STRING_H__
36
#define LIBC_STRING_H_
38
 
37
 
39
#include <types.h>
38
#include <types.h>
40
 
39
 
41
#define bzero(ptr, len) memset((ptr), 0, (len))
40
#define bzero(ptr, len) memset((ptr), 0, (len))
42
 
41
 
Line 57... Line 56...
57
long int strtol(const char *nptr, char **endptr, int base);
56
long int strtol(const char *nptr, char **endptr, int base);
58
unsigned long strtoul(const char *nptr, char **endptr, int base);
57
unsigned long strtoul(const char *nptr, char **endptr, int base);
59
 
58
 
60
#endif
59
#endif
61
 
60
 
62
 
-
 
63
 /** @}
61
/** @}
64
 */
62
 */
65
 
-
 
66
 
-