소스 검색

FIX: comment rework

tags/v1.0
부모
커밋
5938e2ba61
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      main.c

+ 5
- 3
main.c 파일 보기

@@ -54,9 +54,11 @@ len_loop // do {
* We use a simple O(n), no stack algorithm.
* @note
* This function also writes to RAM address @ref RESULT the return value (which is nasty).
* @arg R0: Pointer to string
* @return R0: True if predicate
* False if not
* @arg src{R0} Pointer to string
* @return {R0} True if palindrome, false if not or src is NULL pointer
* @note
* We consider an empty string "" to be a palindrome, as we can see it the same way both
* from the front and the back.
*/
__asm uint32_t isPalindrome (const char* src) {
// R0: src[]


불러오는 중...
취소
저장