Combined ld-acess and libacess
[tpg/acess2.git] / Usermode / Libraries / ld-acess.so_src / lib.c
index 3acc129..28fb467 100644 (file)
@@ -1,62 +1,62 @@
-/*\r
- AcessOS 1\r
- Dynamic Loader\r
- By thePowersGang\r
-*/\r
-#include "common.h"\r
-\r
-// === CODE ===\r
-char *strcpy(char *dest, const char *src)\r
-{\r
-       char    *ret = dest;\r
-       while(*src) {\r
-               *dest = *src;\r
-               src ++; dest ++;\r
-       }\r
-       *dest = '\0';\r
-       return ret;\r
-}\r
-\r
-char *strcat(char *dest, const char *src)\r
-{\r
-       char    *ret = dest;\r
-       while(*dest)    dest++;\r
-       while(*src)             *dest++ = *src++;\r
-       *dest = '\0';\r
-       return ret;\r
+/*
+ AcessOS 1
+ Dynamic Loader
+ By thePowersGang
+*/
+#include "common.h"
+
+// === CODE ===
+char *strcpy(char *dest, const char *src)
+{
+       char    *ret = dest;
+       while(*src) {
+               *dest = *src;
+               src ++; dest ++;
+       }
+       *dest = '\0';
+       return ret;
+}
+
+char *strcat(char *dest, const char *src)
+{
+       char    *ret = dest;
+       while(*dest)    dest++;
+       while(*src)             *dest++ = *src++;
+       *dest = '\0';
+       return ret;
 }
-\r
-/**\r
- * \fn int strcmp(const char *s1, const char *s2)\r
- * \brief Compare two strings\r
+
+/**
+ * \fn int strcmp(const char *s1, const char *s2)
+ * \brief Compare two strings
  */
 int strcmp(const char *s1, const char *s2)
 {
        while(*s1 && *s1 == *s2) s1++,s2++;
        return *s1-*s2;
-}\r
-\r
-/**\r
- * \fn int strlen(const char *str)\r
- * \brief \r
- */\r
-int strlen(const char *str)\r
-{\r
-        int    len = 0;\r
-       while(*str)     len++,str++;\r
-       return len;\r
 }
-\r
-/**\r
- * \fn int file_exists(char *filename)\r
- * \brief Checks if a file exists\r
+
+/**
+ * \fn int strlen(const char *str)
+ * \brief 
+ */
+int strlen(const char *str)
+{
+        int    len = 0;
+       while(*str)     len++,str++;
+       return len;
+}
+
+/**
+ * \fn int file_exists(char *filename)
+ * \brief Checks if a file exists
  */
-int file_exists(char *filename)\r
-{\r
-        int    fd;\r
-        //fd = open(filename, OPENFLAG_READ);\r
-        fd = open(filename, 0);\r
-        if(fd == -1)   return 0;\r
-        close(fd);\r
-        return 1;\r
-}\r
+int file_exists(char *filename)
+{
+        int    fd;
+        //fd = open(filename, OPENFLAG_READ);
+        fd = open(filename, 0);
+        if(fd == -1)   return 0;
+        close(fd);
+        return 1;
+}

UCC git Repository :: git.ucc.asn.au