Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
2fcd82ae
Kaydet (Commit)
2fcd82ae
authored
Tem 09, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: unused listPositionAt
üst
75b074f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
20 deletions
+0
-20
list.h
vcl/inc/list.h
+0
-2
list.c
vcl/source/fontsubset/list.c
+0
-18
No files found.
vcl/inc/list.h
Dosyayı görüntüle @
2fcd82ae
...
...
@@ -66,8 +66,6 @@ extern "C"
int
listAtLast
(
list
);
int
listPosition
(
list
);
/* Expensive! */
#endif
/*- search */
int
listFind
(
list
,
void
*
);
/* Returns true/false */
/*- positioning functions */
/*- return the number of elements by which the current position in the list changes */
...
...
vcl/source/fontsubset/list.c
Dosyayı görüntüle @
2fcd82ae
...
...
@@ -140,24 +140,6 @@ int listIsEmpty(list this)
return
this
->
aCount
==
0
;
}
int
listFind
(
list
this
,
void
*
el
)
{
lnode
*
ptr
;
assert
(
this
!=
0
);
ptr
=
this
->
head
;
while
(
ptr
)
{
if
(
ptr
->
value
==
el
)
{
this
->
cptr
=
ptr
;
return
1
;
}
ptr
=
ptr
->
next
;
}
return
0
;
}
int
listNext
(
list
this
)
{
return
listSkipForward
(
this
,
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment