Subversion Repositories HelenOS-historic

Rev

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

Rev 1612 Rev 1702
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 generic   
-
 
30
 * @{
-
 
31
 */
-
 
32
 
29
/**
33
/**
30
 * @file    memstr.c
34
 * @file
31
 * @brief   Memory string operations.
35
 * @brief   Memory string operations.
32
 *
36
 *
33
 * This file provides architecture independent functions
37
 * This file provides architecture independent functions
34
 * to manipulate blocks of memory. These functions
38
 * to manipulate blocks of memory. These functions
35
 * are optimized as much as generic functions of
39
 * are optimized as much as generic functions of
Line 108... Line 112...
108
    __u16 *p = (__u16 *) dst;
112
    __u16 *p = (__u16 *) dst;
109
   
113
   
110
    for(i=0; i<cnt; i++)
114
    for(i=0; i<cnt; i++)
111
        p[i] = x;  
115
        p[i] = x;  
112
}
116
}
-
 
117
 
-
 
118
 /** @}
-
 
119
 */
-
 
120