Subversion Repositories Kolibri OS

Rev

Rev 5171 | Rev 5187 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5171 Rev 5175
Line 85... Line 85...
85
m_5 db '(5)',13,10,0
85
m_5 db '(5)',13,10,0
Line 86... Line 86...
86
 
86
 
Line 87... Line 87...
87
buf_param rb 80
87
buf_param rb 80
88
 
88
 
89
align 4
89
align 4
90
proc str_n_cat uses eax ecx edi esi, str1:dword, str2:dword, n:dword
90
proc str_n_cat uses eax ecx edi esi, str1:dword, str2:dword, n_len:dword
91
	mov esi,dword[str2]
91
	mov esi,dword[str2]
92
	mov ecx,dword[n]
92
	mov ecx,dword[n_len]
93
	mov edi,dword[str1]
93
	mov edi,dword[str1]
94
	stdcall str_len,edi
94
	stdcall str_len,edi
95
	add edi,eax
95
	add edi,eax